-
Notifications
You must be signed in to change notification settings - Fork 4
53 lines (46 loc) · 1.64 KB
/
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
51
52
53
name: End-to-end Tests
on:
pull_request:
branches: [main, development]
jobs:
test:
timeout-minutes: 60
runs-on: macos-12
steps:
- uses: actions/checkout@v4
- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version-file: .nvmrc
cache: "yarn"
cache-dependency-path: |
yarn.lock
- name: Cache turbo test setup
uses: actions/cache@v3
with:
path: .turbo
key: ${{ runner.os }}-turbo-${{ github.sha }}
restore-keys: |
${{ runner.os }}-turbo-
- name: Install dependencies
run: yarn install --frozen-lockfile
- uses: actions/cache@v3
name: Check for Playwright browsers cache
id: playwright-cache
with:
path: |
~/.cache/ms-playwright
key: ${{ runner.os }}-playwright
- name: Install Playwright Browsers
run: npx playwright install --with-deps
if: steps.playwright-cache.outputs.cache-hit != 'true'
- name: Run Playwright tests
run: yarn test:e2e --cache-dir=.turbo
env:
WHEREBY_API_KEY: ${{ secrets.WHEREBY_API_KEY }}
- uses: actions/upload-artifact@v3
if: always()
with:
name: playwright-report
path: apps/sample-app/playwright-report/
retention-days: 30