-
-
Notifications
You must be signed in to change notification settings - Fork 9
44 lines (34 loc) · 842 Bytes
/
Copy pathrun-tests.yml
File metadata and controls
44 lines (34 loc) · 842 Bytes
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
name: Run Tests
permissions:
contents: read
on:
workflow_dispatch:
push:
branches: [ main ]
jobs:
test:
name: Test
runs-on: ubuntu-latest
env:
npm_config_legacy_peer_deps: "true"
steps:
- name: Checkout
uses: actions/checkout@v7
- name: Setup Node
uses: actions/setup-node@v7
with:
node-version: "24"
cache: npm
cache-dependency-path: ./package-lock.json
- name: Cache .astro
uses: actions/cache@v6
with:
path: ./node_modules
key: astro-cache-${{ github.run_id }}
restore-keys: astro-cache
- name: Install dependencies
run: npm ci
- name: Prepare tests
run: npx playwright install --with-deps
- name: Run tests
run: npm test