From 5a63adef94d9377e58586b4692c968b976df5bcb Mon Sep 17 00:00:00 2001 From: SamTolmay Date: Fri, 29 Jan 2021 14:54:23 +0200 Subject: [PATCH] chore: Fix Github actions tests. --- .github/workflows/test-pulls.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/test-pulls.yml b/.github/workflows/test-pulls.yml index 30dc79eba..091caf776 100644 --- a/.github/workflows/test-pulls.yml +++ b/.github/workflows/test-pulls.yml @@ -13,7 +13,7 @@ jobs: with: node-version: '12.x' - uses: actions/checkout@v2 - - name: Check yarn cache integrity + - name: yarn install run: yarn install - name: Build packages run: yarn build --ignore='@lowdefy/blocks-*' @@ -42,14 +42,14 @@ jobs: with: node-version: '12.x' - uses: actions/checkout@v2 - - name: Check yarn cache integrity + - name: yarn install run: yarn install - name: Build packages run: yarn build --ignore='@lowdefy/build' --ignore='@lowdefy/cli' --ignore='@lowdefy/engine' --ignore='@lowdefy/graphql*' --ignore='@lowdefy/layout' --ignore='@lowdefy/node-utils' --ignore='@lowdefy/operators' --ignore='@lowdefy/renderer' --ignore='@lowdefy/server*' # format tests don't pass on node 12 since icu is missing and tests don't work with locales - name: Test packages - run: yarn test --ignore='@lowdefy/format' --ignore='@lowdefy/build' --ignore='@lowdefy/cli' --ignore='@lowdefy/engine' --ignore='@lowdefy/graphql*' --ignore='@lowdefy/layout' --ignore='@lowdefy/node-utils' --ignore='@lowdefy/operators' --ignore='@lowdefy/renderer' --ignore='@lowdefy/server*' + run: yarn test --scope='@lowdefy/blocks-*' - name: Upload coverage to codecov run: bash <(curl -s https://codecov.io/bash)