Skip to content
This repository has been archived by the owner on Jan 6, 2023. It is now read-only.

Commit

Permalink
Version up Node version
Browse files Browse the repository at this point in the history
  • Loading branch information
occar421 committed Jan 1, 2021
1 parent 061b30c commit 51cffa7
Show file tree
Hide file tree
Showing 2 changed files with 15 additions and 15 deletions.
24 changes: 12 additions & 12 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
version: 2

jobs:
build_6:
build_12:
docker:
- image: circleci/node:6
working_directory: ~/node6
Expand All @@ -10,19 +10,19 @@ jobs:

- restore_cache:
keys:
- 6-dep-{{ checksum "package.json" }}
- 6-dep-
- 12-dep-{{ checksum "package.json" }}
- 12-dep-

- run: yarn install

- save_cache:
paths:
- node_modules
key: 6-dep-{{ checksum "package.json" }}
key: 12-dep-{{ checksum "package.json" }}

- run: yarn test

build_8:
build_14:
docker:
- image: circleci/node:8
working_directory: ~/node8
Expand All @@ -31,15 +31,15 @@ jobs:

- restore_cache:
keys:
- 8-dep-{{ checksum "package.json" }}
- 8-dep-
- 14-dep-{{ checksum "package.json" }}
- 14-dep-

- run: yarn install

- save_cache:
paths:
- node_modules
key: 8-dep-{{ checksum "package.json" }}
key: 14-dep-{{ checksum "package.json" }}

- run: yarn test

Expand All @@ -59,13 +59,13 @@ workflows:
version: 2
build-deploy:
jobs:
- build_6
- build_8
- build_12
- build_14
- approve: # Wait for AppVeyor's result
type: approval
requires:
- build_6
- build_8
- build_12
- build_14
filters:
branches:
only: master
Expand Down
6 changes: 3 additions & 3 deletions appveyor.yml
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
# Test against these versions of Node
environment:
matrix:
- nodejs_version: "6"
- nodejs_version: "8"
- nodejs_version: "12"
- nodejs_version: "14"

install:
# Get the latest stable version of Node
Expand All @@ -21,4 +21,4 @@ branches:
- master

# Don't actually build.
build: off
build: off

0 comments on commit 51cffa7

Please sign in to comment.