Skip to content

Commit

Permalink
feat: run tests against multiple node versions (#150)
Browse files Browse the repository at this point in the history
  • Loading branch information
frederikprijck authored Jul 6, 2023
1 parent f0524f3 commit 54708be
Showing 1 changed file with 9 additions and 2 deletions.
11 changes: 9 additions & 2 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
@@ -1,8 +1,12 @@
version: 2.1
jobs:
build:
parameters:
node-version:
type: string
default: "18"
docker:
- image: circleci/node:14-browsers
- image: cimg/node:<< parameters.node-version >>
environment:
LANG: en_US.UTF-8
steps:
Expand All @@ -22,4 +26,7 @@ jobs:
workflows:
build-and-test:
jobs:
- build
- build:
matrix:
parameters:
node-version: ["14.20", "16.20", "18.16"]

0 comments on commit 54708be

Please sign in to comment.