From 7e64f6cc56cac09c042baee0836b637360b12524 Mon Sep 17 00:00:00 2001 From: Straw-Etiam Date: Tue, 3 Nov 2020 19:33:15 +0100 Subject: [PATCH] install_yarn --- .circleci/config.yml | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/.circleci/config.yml b/.circleci/config.yml index 4432d69..6f992d0 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -5,6 +5,7 @@ workflows: tests: jobs: - helloworld + - install_yarn jobs: helloworld: @@ -13,4 +14,13 @@ jobs: steps: - checkout - run: echo "hello world" + + + install_yarn: + docker: + - image: circleci/node:12 + steps: + - checkout + - run: yarn global add node-gyp + - run: yarn install