-
Notifications
You must be signed in to change notification settings - Fork 11
62 lines (60 loc) · 1.85 KB
/
preview.yaml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
on:
pull_request:
types: [opened, reopened, synchronize, ready_for_review]
workflow_dispatch:
jobs:
check:
runs-on: ubuntu-latest
environment: Preview
env:
SENTRY_AUTH_TOKEN: ${{ secrets.SENTRY_AUTH_TOKEN }}
SENTRY_ORG: exactly
SENTRY_PROJECT: webapp
SENTRY_ENVIRONMENT: development
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: 18
cache: npm
- run: npm ci
- run: npm run lint
- run: npm run build
- run: npx unimported
e2e:
if: github.event_name != 'pull_request' || !github.event.pull_request.draft
runs-on: ubuntu-latest
environment: Test
needs: check
env:
NEXT_PUBLIC_SOCKET_API_KEY: ${{ secrets.NEXT_PUBLIC_SOCKET_API_KEY }}
CYPRESS_TENDERLY_ACCESS_KEY: ${{ secrets.TENDERLY_ACCESS_KEY }}
CYPRESS_TENDERLY_PROJECT: exactly
CYPRESS_TENDERLY_USER: exactly
NODE_OPTIONS: '--max_old_space_size=4096'
steps:
- run: |
sudo DEBIAN_FRONTEND=noninteractive apt-get update
sudo DEBIAN_FRONTEND=noninteractive apt-get -y install libgtk2.0-0 libgtk-3-0 libgbm-dev libnotify-dev libgconf-2-4 libnss3 libxss1 libasound2 libxtst6 xauth xvfb
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: 18
cache: npm
- run: npm ci --audit false
- uses: cypress-io/github-action@v5
with:
browser: chrome
headed: false
install: false
record: false
start: npm run start:e2e
wait-on: 'http://127.0.0.1:3000'
wait-on-timeout: 300000
command: npm run test
- uses: actions/upload-artifact@v3
if: failure()
with:
name: e2e-artifacts
path: |
tests/e2e/screenshots