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 d7ef594 commit 47a366eCopy full SHA for 47a366e
.circleci/config.yml
@@ -6,27 +6,15 @@ jobs:
6
7
steps:
8
- checkout
9
- - restore_cache:
10
- name: Restore Yarn Package Cache
11
- keys:
12
- - v1-yarn-packages-{{ checksum "yarn.lock" }}
13
-
14
- run:
15
name: Setup NPM Token
16
command: |
17
yarn config set registry "https://registry.npmjs.org/"
18
echo "//registry.npmjs.org/:_authToken=$NPM_TOKEN" > .npmrc
19
echo "registry=https://registry.npmjs.org/" >> .npmrc
20
21
22
name: Install Dependencies
23
command: yarn install --frozen-lockfile
24
- - save_cache:
25
- name: Save Yarn Package Cache
26
- key: v1-yarn-packages-{{ checksum "yarn.lock" }}
27
- paths:
28
- - ~/.cache/yarn
29
30
31
name: build
32
command: yarn vscode:prepublish
0 commit comments