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 11name : ci
22on : push
33
4- env :
5- NODE_VERSIONS : [16.x, 18.x]
6-
74jobs :
85 build :
96 name : Build
107 runs-on : self-hosted
118 strategy :
129 matrix :
13- node-version : ${{ env.NODE_VERSIONS }}
10+ node-version : [16.x, 18.x]
1411 steps :
1512 - name : Checkout sources
1613 uses : actions/checkout@v2
2926 runs-on : self-hosted
3027 strategy :
3128 matrix :
32- node-version : ${{ env.NODE_VERSIONS }}
29+ node-version : [16.x, 18.x]
3330 steps :
3431 - name : Linting
3532 run : npm run lint
4239 runs-on : self-hosted
4340 strategy :
4441 matrix :
45- node-version : ${{ env.NODE_VERSIONS }}
42+ node-version : [16.x, 18.x]
4643 steps :
4744 - name : Running unit tests
4845 run : npm run test:unit
5451 strategy :
5552 max-parallel : 1
5653 matrix :
57- node-version : ${{ env.NODE_VERSIONS }}
54+ node-version : [16.x, 18.x]
5855 steps :
5956 - name : Creating `.env` file
6057 run : |
You can’t perform that action at this time.
0 commit comments