Skip to content

Commit ca06968

Browse files
authored
Merge pull request #28 from gemini-testing/ci-fix
ci: add testing for nodejs 6.x, 8.x, 10.x
2 parents 625da56 + 2ef7ac8 commit ca06968

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

.github/workflows/node.js.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ jobs:
1616

1717
strategy:
1818
matrix:
19-
node-version: [12.x, 14.x, 16.x]
19+
node-version: [6.x, 8.x, 10.x, 12.x, 14.x, 16.x]
2020

2121
steps:
2222
- uses: actions/checkout@v2
@@ -25,5 +25,5 @@ jobs:
2525
with:
2626
node-version: ${{ matrix.node-version }}
2727
cache: 'npm'
28-
- run: npm ci
28+
- run: npm install
2929
- run: npm test

0 commit comments

Comments
 (0)