File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 1- # This workflow will do a clean install of node dependencies, build the source code and run tests across different versions of node
2- # For more information see: https://help.github.com/actions/language-and-framework-guides/using-nodejs-with-github-actions
3-
4- name : Node.js CI
1+ name : CI
52
63on :
74 push :
118
129jobs :
1310 build :
14-
11+ name : " Node ${{ matrix.node-version }} "
1512 runs-on : ubuntu-latest
1613
1714 strategy :
1815 matrix :
19- node-version : [10.x, 12.x, 13 .x]
16+ node-version : [10.x, 12.x, 14 .x]
2017
2118 steps :
2219 - uses : actions/checkout@v2
2320 - name : Use Node.js ${{ matrix.node-version }}
2421 uses : actions/setup-node@v1
2522 with :
2623 node-version : ${{ matrix.node-version }}
27- - run : yarn install
24+ - run : yarn install --frozen-lockfile
2825 - run : yarn lint:js
2926 - run : yarn test
30- env :
31- CI : true
You can’t perform that action at this time.
0 commit comments