Skip to content

Commit

Permalink
Add node 15 test (#793)
Browse files Browse the repository at this point in the history
* Add node 16 test

* Set version to node 15
  • Loading branch information
Shinigami92 authored May 31, 2021
1 parent a5794b4 commit e1b0039
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:14
image: circleci/node:15

set-npm-global: &set-npm-global
run:
Expand Down Expand Up @@ -223,6 +223,20 @@ jobs:
- <<: *restore
- <<: *postgres-wait
- <<: *test-postgres
test-node-14:
docker:
- image: circleci/node:14
environment:
- DATABASE_URL=postgres://ubuntu:ubuntu@localhost:5432/circle_test
- image: postgres:13.3-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 @@ -492,6 +506,9 @@ workflows:
- test-node-12:
requires:
- install
- test-node-14:
requires:
- install
- test-config:
requires:
- install
Expand Down

0 comments on commit e1b0039

Please sign in to comment.