We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3a7af43 commit c0af5d0Copy full SHA for c0af5d0
.circleci/config.yml
@@ -1,23 +1,15 @@
1
-version: 2
2
-jobs:
3
- test:
4
- docker:
5
- - image: cimg/node:16.13.2
6
- steps:
7
- - checkout
8
- - restore_cache:
9
- keys:
10
- - v1-dependencies-{{ checksum "yarn.lock" }}
11
- - v1-dependencies-
12
- - run: yarn install
13
- - save_cache:
14
- paths:
15
- - node_modules
16
- key: v1-dependencies-{{ checksum "yarn.lock" }}
17
- - run: yarn lint
18
- - run: yarn test
+version: 2.1
+
+orbs:
+ node: electronjs/[email protected]
19
workflows:
20
- version: 2
21
build:
22
jobs:
23
- - test
+ - node/test:
+ executor: node/linux
+ node-version: "20.12"
+ use-test-steps: true
+ test-steps:
+ - run: yarn lint
+ - run: yarn test
0 commit comments