Skip to content

Commit

Permalink
ci: use electronjs/node orb
Browse files Browse the repository at this point in the history
  • Loading branch information
dsanders11 authored Aug 22, 2023
1 parent 100fdb4 commit 7093484
Showing 1 changed file with 22 additions and 18 deletions.
40 changes: 22 additions & 18 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
@@ -1,29 +1,33 @@
version: 2.1

orbs:
cfa: continuousauth/[email protected]
jobs:
test:
docker:
- image: cimg/node:18.11.0
steps:
- checkout
- restore_cache:
key: dependency-cache-{{ checksum "yarn.lock" }}
- run: yarn --frozen-lockfile
- save_cache:
key: dependency-cache-{{ checksum "yarn.lock" }}
paths:
- ./node_modules
- run: yarn lint
- run: yarn test
node: electronjs/[email protected]

workflows:
test_and_release:
# release when tests are successful
# Run the test jobs first, then the release only when all the test jobs are successful
jobs:
- test
- node/test:
executor: node/macos
name: test-mac-<< matrix.node-version >>
test-steps:
- run: yarn lint
- run: yarn test
use-test-steps: true
matrix:
alias: test-mac
parameters:
node-version:
- 20.5.0
- 18.17.0
- 16.20.1
- 14.21.3
- 12.22.12
- 10.24.1
- cfa/release:
requires:
- test
- test-mac
filters:
branches:
only:
Expand Down

0 comments on commit 7093484

Please sign in to comment.