Skip to content

Commit a8ffa45

Browse files
authored
Merge pull request #89 from rwjblue/tweak-ci
2 parents e5b08e0 + 6674f64 commit a8ffa45

1 file changed

Lines changed: 4 additions & 9 deletions

File tree

.github/workflows/nodejs.yml

Lines changed: 4 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,4 @@
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

63
on:
74
push:
@@ -11,21 +8,19 @@ on:
118

129
jobs:
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

0 commit comments

Comments
 (0)