-
Notifications
You must be signed in to change notification settings - Fork 31
50 lines (42 loc) · 1.29 KB
/
check-e2e.yml
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
name: check-e2e
on: push
jobs:
check-e2e:
strategy:
matrix:
browser: [chromium]
timeout-minutes: 30
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: "20.9.0"
- name: Install dependencies
run: npm ci
- name: Cache Playwright browsers
uses: actions/cache@v3
id: playwright-dep-cache
with:
path: ~/.cache/ms-playwright
key: ${{ runner.os }}-playwright-${{ hashFiles('package-lock.json') }}
- name: Install Playwright browsers
if: steps.playwright-dep-cache.outputs.cache-hit != 'true'
run: npx playwright install chromium
- name: Install Radicle binaries
run: |
mkdir -p tests/artifacts;
./scripts/install-binaries;
- name: Run Playwright tests
run: |
npm run test:e2e -- --project ${{ matrix.browser }};
npm run test:e2e:ipfs -- --project ${{ matrix.browser }};
- name: Upload artifacts
uses: actions/upload-artifact@v3
if: always()
with:
name: test-artifacts-${{ runner.os }}
retention-days: 30
if-no-files-found: "ignore"
path: |
tests/artifacts/**/*