We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 121b8bc commit 4eae081Copy full SHA for 4eae081
.circleci/config.yml
@@ -1,20 +1,20 @@
1
version: 2.1
2
orbs:
3
- node: circleci/node@1.1.6
+ node: circleci/node@2.0.3
4
jobs:
5
build-and-test:
6
executor:
7
name: node/default
8
tag: '12.16'
9
steps:
10
- checkout
11
- - node/with-cache:
12
- steps:
13
- - run: yarn install
14
- - run: scripts/lint.sh
15
- - run: scripts/format.sh
16
- - run: scripts/build.sh
17
- - run: scripts/test.sh
+ - node/install-packages:
+ pkg-manager: yarn
+ cache-key: yarn.lock
+ - run: scripts/lint.sh
+ - run: scripts/format.sh
+ - run: scripts/build.sh
+ - run: scripts/test.sh
18
workflows:
19
20
0 commit comments