File tree Expand file tree Collapse file tree 3 files changed +34
-0
lines changed Expand file tree Collapse file tree 3 files changed +34
-0
lines changed Original file line number Diff line number Diff line change 1+ * text =auto eol =lf
Original file line number Diff line number Diff line change 1+ version : 2
2+ updates :
3+ - package-ecosystem : github-actions
4+ directory : /
5+ schedule :
6+ interval : daily
Original file line number Diff line number Diff line change 1+ name : nodejs
2+ on : [pull_request, push]
3+ jobs :
4+ build :
5+ runs-on : ${{ matrix.os }}
6+ strategy :
7+ matrix :
8+ node-version : [10, 12, 14]
9+ os : [ubuntu-latest, windows-latest, macOS-latest]
10+ steps :
11+ - uses : actions/checkout@v2.3.2
12+ - name : Node.js ${{ matrix.node-version }}
13+ uses : actions/setup-node@v2.1.1
14+ with :
15+ node-version : ${{ matrix.node-version }}
16+ - name : Update npm
17+ run : |
18+ npm install -g npm
19+ npm --version
20+ - name : Install dependencies
21+ uses : bahmutov/npm-install@v1.4.3
22+ with :
23+ useLockFile : false
24+ - name : npm ls
25+ run : npm ls
26+ - name : Test
27+ run : npm test
You can’t perform that action at this time.
0 commit comments