mirror of
https://github.com/a-nyx/maputnik-with-pmtiles.git
synced 2024-12-28 18:31:17 +01:00
Added multiple nodejs versions.
This commit is contained in:
parent
ac51902435
commit
fe0e7af033
1 changed files with 17 additions and 0 deletions
|
@ -25,6 +25,13 @@ templates:
|
|||
path: /tmp/artifacts
|
||||
destination: /artifacts
|
||||
jobs:
|
||||
build-linux-node-v6:
|
||||
docker:
|
||||
# specify the version you desire here
|
||||
- image: node:6
|
||||
- image: selenium/standalone-chrome:3.1.0
|
||||
working_directory: ~/repo
|
||||
steps: *steps
|
||||
build-linux-node-v8:
|
||||
docker:
|
||||
# specify the version you desire here
|
||||
|
@ -32,9 +39,19 @@ jobs:
|
|||
- image: selenium/standalone-chrome:3.1.0
|
||||
working_directory: ~/repo
|
||||
steps: *steps
|
||||
build-linux-node-v9:
|
||||
docker:
|
||||
# specify the version you desire here
|
||||
- image: node:9
|
||||
- image: selenium/standalone-chrome:3.1.0
|
||||
working_directory: ~/repo
|
||||
steps: *steps
|
||||
|
||||
workflows:
|
||||
version: 2
|
||||
build:
|
||||
jobs:
|
||||
- build-linux-node-v6
|
||||
- build-linux-node-v8
|
||||
- build-linux-node-v9
|
||||
|
||||
|
|
Loading…
Reference in a new issue