Skip to content

Commit

Permalink
add circle file
Browse files Browse the repository at this point in the history
  • Loading branch information
AndrewCsontos committed Aug 31, 2022
1 parent 95101e7 commit df651d1
Showing 1 changed file with 48 additions and 0 deletions.
48 changes: 48 additions & 0 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,48 @@
# JavaScript Node CircleCI 2.1 configuration file
#
# Check https://circleci.com/docs/2.1/language-javascript/ for more details
#
version: 2.1
executors:
linux:
docker:
- image: cimg/base:2020.01
environment:
ENV: development

macos:
macos:
xcode: '13.2.1'
environment:
ENV: development

orbs:
node: circleci/[email protected]

jobs:
test:
parameters:
os:
type: executor
node-version:
type: string
executor: << parameters.os >>
steps:
- checkout
- node/install:
node-version: << parameters.node-version >>
npm-version: 6.14.14
- node/install-packages
- run:
command: npm run test

workflows:
version: 2
matrix-tests:
jobs:
- test:
context: st-global
matrix:
parameters:
os: [linux, macos]
node-version: ['14.19.1']

0 comments on commit df651d1

Please sign in to comment.