We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 086fe66 commit ccbc403Copy full SHA for ccbc403
2 files changed
.github/workflows/ci.yml
@@ -7,24 +7,12 @@ on:
7
branches: [main]
8
9
jobs:
10
- lint:
11
- name: Lint
12
- runs-on: ubuntu-latest
13
- steps:
14
- - uses: actions/checkout@v4
15
- - uses: actions/setup-node@v4
16
- with:
17
- node-version: '20'
18
- cache: 'npm'
19
- - run: npm ci
20
- - run: npm run lint
21
-
22
build:
23
name: Build
24
runs-on: ubuntu-latest
25
strategy:
26
matrix:
27
- node-version: [18, 20, 21]
+ node-version: [20, 22]
28
steps:
29
- uses: actions/checkout@v4
30
- uses: actions/setup-node@v4
@@ -33,16 +21,3 @@ jobs:
33
cache: 'npm'
34
- run: npm ci
35
- run: npm run build
36
37
- test:
38
- name: Test
39
40
41
42
43
44
45
46
47
- - run: npm run build
48
- - run: npm run test
0 commit comments