Skip to content

Commit

Permalink
Adding Node 20 to circle ci tests.
Browse files Browse the repository at this point in the history
  • Loading branch information
lrnselfreliance committed Nov 30, 2023
1 parent 6dfed2e commit 04cb24e
Showing 1 changed file with 14 additions and 0 deletions.
14 changes: 14 additions & 0 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -61,6 +61,20 @@ jobs:
paths:
- ./app/node_modules
- run: cd app && npm run test
app-tests-20:
docker:
- image: cimg/node:20.10
resource_class: small
steps:
- checkout
- restore_cache:
key: dependency-cache-{{ checksum "app/package-lock.json" }}
- run: cd app && npm install --legacy-peer-deps
- save_cache:
key: dependency-cache-{{ checksum "app/package-lock.json" }}
paths:
- ./app/node_modules
- run: cd app && npm run test
api-tests-3-8:
docker:
- image: cimg/python:3.8
Expand Down

0 comments on commit 04cb24e

Please sign in to comment.