Skip to content

Commit

Permalink
Add node 17 (#853)
Browse files Browse the repository at this point in the history
  • Loading branch information
littlewhywhat committed Dec 7, 2021
1 parent b3b345b commit ec3e62c
Showing 1 changed file with 18 additions and 1 deletion.
19 changes: 18 additions & 1 deletion .circleci/config.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
version: 2

node-image: &node-image
image: circleci/node:16
image: circleci/node:17

set-npm-global: &set-npm-global
run:
Expand Down Expand Up @@ -264,6 +264,20 @@ jobs:
- <<: *restore
- <<: *postgres-wait
- <<: *test-postgres
test-node-17:
docker:
- image: circleci/node:17
environment:
- DATABASE_URL=postgres://ubuntu:ubuntu@localhost:5432/circle_test
- image: postgres:13.5-alpine
environment:
- POSTGRES_USER=ubuntu
- POSTGRES_PASSWORD=ubuntu
- POSTGRES_DB=circle_test
steps:
- <<: *restore
- <<: *postgres-wait
- <<: *test-postgres
test-config:
docker:
- <<: *node-image
Expand Down Expand Up @@ -542,6 +556,9 @@ workflows:
- test-node-16:
requires:
- install
- test-node-17:
requires:
- install
- test-config:
requires:
- install
Expand Down

0 comments on commit ec3e62c

Please sign in to comment.