-
-
Notifications
You must be signed in to change notification settings - Fork 47
35 lines (32 loc) · 724 Bytes
/
test.yml
File metadata and controls
35 lines (32 loc) · 724 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
name: Test
on:
push:
jobs:
test:
name: Node ${{ matrix.node }}
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
node: ['20', 'lts/*']
steps:
- uses: actions/checkout@v5
- run: corepack enable
- uses: actions/setup-node@v5
with:
node-version: ${{ matrix.node }}
cache: yarn
- run: yarn install --immutable
- run: yarn test
lint:
name: Lint
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v5
- run: corepack enable
- uses: actions/setup-node@v5
with:
node-version: 'lts/*'
cache: yarn
- run: yarn install --immutable
- run: yarn lint:ci