Browse Source

install_yarn

pull/1/merge
Straw-Etiam 6 years ago
parent
commit
7e64f6cc56
  1. 10
      .circleci/config.yml

10
.circleci/config.yml

@ -5,6 +5,7 @@ workflows:
tests: tests:
jobs: jobs:
- helloworld - helloworld
- install_yarn
jobs: jobs:
helloworld: helloworld:
@ -14,3 +15,12 @@ jobs:
- checkout - checkout
- run: echo "hello world" - run: echo "hello world"
install_yarn:
docker:
- image: circleci/node:12
steps:
- checkout
- run: yarn global add node-gyp
- run: yarn install
Loading…
Cancel
Save