-
-
Notifications
You must be signed in to change notification settings - Fork 1k
37 lines (36 loc) · 878 Bytes
/
test.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
name: Test / Lint
on:
push:
permissions:
contents: read
jobs:
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: 20
- run: npm ci
- run: npm run lint
- run: npm run typecheck
- run: npm run build
test:
runs-on: ${{ matrix.config.os }}
strategy:
matrix:
node-version: [18.x, 20.x, 22.x]
config:
- { os: macos-latest }
- { os: ubuntu-latest }
- { os: windows-latest }
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
- run: npm ci
- run: npm test
- uses: codecov/codecov-action@ab904c41d6ece82784817410c45d8b8c02684457 # v3
with:
directory: ./coverage/