From ea503c6694c1a21bf6112ec7f331cbb2bd14aeb9 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Maciej=20Jastrze=CC=A8bski?= Date: Wed, 18 Jan 2023 22:25:18 +0000 Subject: [PATCH] chore: fix deploy script --- .github/workflows/deploy-website.yml | 2 +- .github/workflows/main.yml | 8 ++++---- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/deploy-website.yml b/.github/workflows/deploy-website.yml index a448a53b..32d6112e 100644 --- a/.github/workflows/deploy-website.yml +++ b/.github/workflows/deploy-website.yml @@ -15,7 +15,7 @@ jobs: uses: actions/checkout@v3 - name: Setup Node.js and website deps - uses: ./.github/actions/setup--website-deps + uses: ./.github/actions/setup-website-deps - name: Build website run: yarn --cwd website build diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 1c6fff32..2e91181e 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -59,7 +59,7 @@ jobs: run: yarn flow test: - needs: [install-cached-deps] + needs: [lint, typecheck] runs-on: ubuntu-latest name: Test React 18 steps: @@ -76,7 +76,7 @@ jobs: uses: codecov/codecov-action@v2 test-react-17: - needs: [install-cached-deps] + needs: [test] runs-on: ubuntu-latest name: Test React 17 steps: @@ -90,7 +90,7 @@ jobs: run: yarn test:ci:react:17 test-website: - needs: [install-cached-deps] + needs: [lint, typecheck] runs-on: ubuntu-latest name: Test Website steps: @@ -98,7 +98,7 @@ jobs: uses: actions/checkout@v3 - name: Setup Node.js and website deps - uses: ./.github/actions/setup--website-deps + uses: ./.github/actions/setup-website-deps - name: Build website run: yarn --cwd website build