-
Notifications
You must be signed in to change notification settings - Fork 2
35 lines (35 loc) · 1 KB
/
Copy pathtest.yaml
File metadata and controls
35 lines (35 loc) · 1 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
name: Test
on:
push:
branches:
- master
- ci/test # For testing changes to this workflow
pull_request:
branches:
- master
merge_group:
workflow_dispatch:
workflow_call:
permissions:
contents: read
actions: read
checks: write
jobs:
Tests:
runs-on: ubuntu-latest
name: Tests
steps:
- uses: actions/checkout@1af3b93b6815bc44a9784bd300feb67ff0d1eeb3 # v6
- uses: pnpm/action-setup@08c4be7e2e672a47d11bd04269e27e5f3e8529cb # v6
with:
run_install: true
- uses: actions/setup-node@2028fbc5c25fe9cf00d9f06a71cc4710d4507903 # v6
with:
node-version: '24'
cache: 'pnpm'
- name: Install Playwright Browsers
run: pnpm exec playwright install chromium --only-shell
- name: Compile
run: pnpm compile
- name: Run tests
run: pnpm test