Skip to content

Commit

Permalink
fix(ci): node versions for CI
Browse files Browse the repository at this point in the history
  • Loading branch information
rafalwolak committed Jul 30, 2019
1 parent bf6c033 commit 9a62d4b
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 5 deletions.
14 changes: 10 additions & 4 deletions .gitlab-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,14 +6,20 @@ stages:
before_script:
- npm install

node:6:
image: node:6
node:8:
image: node:8
stage: test
script:
- npm test

node:8:
image: node:8
node:10:
image: node:10
stage: test
script:
- npm test

node:11:
image: node:11
stage: test
script:
- npm test
Expand Down
4 changes: 3 additions & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,10 @@ branches:
language: node_js

node_js:
- 11
- 11
- 10
- 8
- 6

before_install:
- yarn
Expand Down

0 comments on commit 9a62d4b

Please sign in to comment.