-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* add circleci workflow * remove cache step * remove travis ci * Matrix build node 10,12,14,16,18 * specify parameter correctly * specify node version as string * remove node 18
- Loading branch information
1 parent
61c7729
commit ca0430c
Showing
2 changed files
with
31 additions
and
17 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,31 @@ | ||
version: 2.1 | ||
|
||
workflows: | ||
version: 2 | ||
build: | ||
jobs: | ||
- build: | ||
matrix: | ||
parameters: | ||
node-version: | ||
- "10.24" | ||
- "12.13" | ||
- "14.20" | ||
- "16.17" | ||
|
||
jobs: | ||
build: | ||
parameters: | ||
node-version: | ||
type: string | ||
docker: | ||
- image: cimg/node:<< parameters.node-version >> | ||
- image: redis:7 | ||
steps: | ||
- checkout | ||
- run: | ||
name: install-npm | ||
command: npm install | ||
- run: | ||
name: test | ||
command: npm test |
This file was deleted.
Oops, something went wrong.