-
Notifications
You must be signed in to change notification settings - Fork 0
36 lines (33 loc) · 773 Bytes
/
qa.yml
File metadata and controls
36 lines (33 loc) · 773 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
name: qa
on:
push:
branches:
- main
pull_request:
workflow_dispatch:
env:
FORCE_JAVASCRIPT_ACTIONS_TO_NODE24: true
jobs:
checks:
runs-on: ubuntu-latest
timeout-minutes: 20
permissions:
contents: read
steps:
- uses: actions/checkout@v6
with:
submodules: true
fetch-depth: 0
- uses: actions/setup-node@v6.4.0
with:
node-version: 20.x
cache: 'npm'
- run: npm ci
- run: npm run lint
- run: npm run test --if-present
- run: npm run build
- run: npx playwright install --with-deps chromium
- run: npx playwright test
- run: npx lhci autorun
env:
LHCI_GITHUB_APP_TOKEN: ${{ secrets.LHCI_GITHUB_APP_TOKEN }}