Skip to content

Commit ca1ea27

Browse files
authored
Merge pull request #177 from croutonn/test-more-node-versions
Add more Node.js versions in test matrix
2 parents 97affad + f116c86 commit ca1ea27

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

.github/workflows/main.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -12,17 +12,17 @@ jobs:
1212

1313
strategy:
1414
matrix:
15-
node-version: [12.x]
15+
node-version: ['12', '14', '16']
1616

1717
steps:
1818
- uses: actions/checkout@v2
1919
- name: Run tests with ${{ matrix.node-version }}
20-
uses: actions/setup-node@v2.4.1
20+
uses: actions/setup-node@v2
2121
with:
2222
node-version: ${{ matrix.node-version }}
2323
- name: yarn install, and test
2424
run: |
25-
yarn install
25+
yarn install --pure-lockfile
2626
yarn test
2727
env:
2828
CI: true

0 commit comments

Comments
 (0)