-
Notifications
You must be signed in to change notification settings - Fork 12
45 lines (40 loc) · 1.07 KB
/
ci.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
name: CI
on:
push:
branches:
- main
pull_request: {}
concurrency:
group: ci-${{ github.head_ref || github.ref }}
cancel-in-progress: true
jobs:
lint:
name: "Lint"
runs-on: ubuntu-latest
timeout-minutes: 5
steps:
- uses: actions/checkout@v4
- uses: wyvox/action-setup-pnpm@v3
- run: pnpm install
- run: pnpm build
- run: pnpm lint
- run: pnpm lint
working-directory: tests-public
test:
name: "Test ${{ matrix.testenv.name }}"
runs-on: ubuntu-latest
timeout-minutes: 5
strategy:
matrix:
testenv:
- { name: "Node", args: '' }
- { name: "Chrome", args: '--browser.name=chrome --browser.headless' }
- { name: "Firefox", args: '--browser.name=firefox --browser.headless' }
steps:
- uses: actions/checkout@v4
- uses: wyvox/action-setup-pnpm@v3
- run: pnpm install
- run: pnpm build
- run: pnpm vitest ${{ matrix.testenv.args }}
- run: pnpm vitest ${{ matrix.testenv.args }}
working-directory: tests-public