Skip to content

Commit

Permalink
PLAT-5954 - Use CircleCI (#31)
Browse files Browse the repository at this point in the history
* 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
stephenrob authored Oct 6, 2022
1 parent 61c7729 commit ca0430c
Show file tree
Hide file tree
Showing 2 changed files with 31 additions and 17 deletions.
31 changes: 31 additions & 0 deletions .circleci/config.yml
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
17 changes: 0 additions & 17 deletions .travis.yml

This file was deleted.

0 comments on commit ca0430c

Please sign in to comment.