We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent eef7557 commit f9e27b1Copy full SHA for f9e27b1
.circleci/config.yml
@@ -1,31 +1,11 @@
1
-step-restore-cache: &step-restore-cache
2
- restore_cache:
3
- keys:
4
- - v1-dependencies-{{ arch }}-{{ checksum "yarn.lock" }}
5
- - v1-dependencies-{{ arch }}
6
-
7
-steps-test: &steps-test
8
- steps:
9
- - checkout
10
- - *step-restore-cache
11
- - run: yarn
12
- - save_cache:
13
- paths:
14
- - node_modules
15
- key: v1-dependencies-{{ arch }}-{{ checksum "yarn.lock" }}
16
- - run: yarn test
17
18
version: 2.1
+
19
orbs:
20
- win: circleci/[email protected]
21
-jobs:
22
- test-linux-18:
23
- docker:
24
- - image: cimg/node:18.16.0
25
- <<: *steps-test
+ node: electronjs/[email protected]
26
27
workflows:
28
- version: 2
29
- test_and_release:
+ build:
30
jobs:
31
- - test-linux-18
+ - node/test:
+ executor: node/linux
+ node-version: "18.16"
0 commit comments