From 814e712be03fa7ccbe587a9c7ef8b8cda4a12f7f Mon Sep 17 00:00:00 2001 From: Matteo Vivona Date: Sat, 15 Feb 2020 13:54:44 +0100 Subject: [PATCH] fix(build): fixes yarn install on github ci --- .github/workflows/ci.yml | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 7cb8362604..d577ead329 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -51,9 +51,11 @@ jobs: uses: actions/setup-node@v1 with: node-version: ${{ matrix.node-version }} + - name: Init yarn + run: | + npm install -g yarn - name: Install with yarn run: | - curl -o- -L https://yarnpkg.com/install.sh | bash yarn install - name: Lint code run: | @@ -61,6 +63,9 @@ jobs: - name: Build run: | yarn build + - name: Storybook build + run: | + yarn build-storybook - name: Run tests run: | yarn test:ci