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 1e5f896 commit 4ed2bd6Copy full SHA for 4ed2bd6
.circleci/config.yml
@@ -1,16 +1,17 @@
1
-version: 2.1
+version: '2.1'
2
orbs:
3
- node: circleci/node@1.1.6
+ node: circleci/node@4.2.1
4
jobs:
5
- build-and-test:
6
- executor:
7
- name: node/default
8
- steps:
9
- - checkout
10
- - node/with-cache:
11
12
- - run: npm install
13
-workflows:
14
build-and-test:
15
- jobs:
16
- - build-and-test
+ docker:
+ - image: 'cimg/base:stable'
+ steps:
+ - checkout
+ - node/install:
+ install-yarn: true
+ - run: yarn install
+ - run: yarn build
+workflows:
+ setup:
+ jobs:
17
+ - build-and-test
0 commit comments