File tree Expand file tree Collapse file tree 1 file changed +4
-7
lines changed Expand file tree Collapse file tree 1 file changed +4
-7
lines changed Original file line number Diff line number Diff line change 1
1
name : ci
2
2
on : push
3
3
4
- env :
5
- NODE_VERSIONS : [16.x, 18.x]
6
-
7
4
jobs :
8
5
build :
9
6
name : Build
10
7
runs-on : self-hosted
11
8
strategy :
12
9
matrix :
13
- node-version : ${{ env.NODE_VERSIONS }}
10
+ node-version : [16.x, 18.x]
14
11
steps :
15
12
- name : Checkout sources
16
13
uses : actions/checkout@v2
29
26
runs-on : self-hosted
30
27
strategy :
31
28
matrix :
32
- node-version : ${{ env.NODE_VERSIONS }}
29
+ node-version : [16.x, 18.x]
33
30
steps :
34
31
- name : Linting
35
32
run : npm run lint
42
39
runs-on : self-hosted
43
40
strategy :
44
41
matrix :
45
- node-version : ${{ env.NODE_VERSIONS }}
42
+ node-version : [16.x, 18.x]
46
43
steps :
47
44
- name : Running unit tests
48
45
run : npm run test:unit
54
51
strategy :
55
52
max-parallel : 1
56
53
matrix :
57
- node-version : ${{ env.NODE_VERSIONS }}
54
+ node-version : [16.x, 18.x]
58
55
steps :
59
56
- name : Creating `.env` file
60
57
run : |
You can’t perform that action at this time.
0 commit comments