-
Notifications
You must be signed in to change notification settings - Fork 1
39 lines (33 loc) · 1.11 KB
/
Copy pathtest.yml
File metadata and controls
39 lines (33 loc) · 1.11 KB
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
name: Tests
on: [push, pull_request]
jobs:
tests:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: 20
cache: "npm"
- uses: google/wireit@setup-github-actions-caching/v1
- name: Install dependencies
run: npm ci
- name: Get installed Playwright version
id: playwright-version
run:
echo "version=$(npm view @playwright/test version)" >> $GITHUB_OUTPUT
- uses: actions/cache@v3
id: playwright-cache
with:
path: "~/.cache/ms-playwright"
key:
"${{ runner.os }}-playwright-${{
steps.playwright-version.outputs.version }}"
restore-keys: |
${{ runner.os }}-playwright-
# Couldn't restore Playwright browser binaries - install from scratch
- name: Install Playwright's dependencies
#if: steps.playwright-cache.outputs.cache-hit != 'true'
run: npx playwright install --with-deps
- name: "Run tests (with Github Actions wireit cache)"
run: npm run qa