File tree Expand file tree Collapse file tree 1 file changed +24
-22
lines changed Expand file tree Collapse file tree 1 file changed +24
-22
lines changed Original file line number Diff line number Diff line change @@ -3,29 +3,31 @@ name: ci
3
3
permissions : {}
4
4
5
5
on :
6
- push :
7
- branches :
8
- - develop
9
- pull_request :
10
- branches :
11
- - develop
12
- workflow_dispatch : {}
13
- merge_group : {}
6
+ push :
7
+ branches :
8
+ - develop
9
+ pull_request :
10
+ branches :
11
+ - develop
12
+ workflow_dispatch : {}
13
+ merge_group : {}
14
14
15
15
jobs :
16
- ci :
17
- runs-on : ubuntu-latest
16
+ ci :
17
+ runs-on : ubuntu-latest
18
+ strategy :
19
+ matrix :
20
+ node : [18, 20, 22]
21
+ steps :
22
+ - uses : actions/checkout@v4
23
+ - run : corepack enable
24
+ - uses : actions/setup-node@v4
25
+ with :
26
+ node-version : ${{ matrix.node }}
27
+ cache : npm
18
28
19
- steps :
20
- - uses : actions/checkout@v4
21
- - run : corepack enable
22
- - uses : actions/setup-node@v4
23
- with :
24
- node_version : 20
25
- cache : npm
29
+ - name : 📦 Install dependencies
30
+ run : npm install
26
31
27
- - name : 📦 Install dependencies
28
- run : npm install
29
-
30
- - name : 📝 Lint
31
- run : npm run lint
32
+ - name : 📝 Lint
33
+ run : npm run lint
You can’t perform that action at this time.
0 commit comments