From 017a34fc100a05f83d1372dd88538a2810b9c19c Mon Sep 17 00:00:00 2001 From: Zack Pollard Date: Wed, 12 Apr 2023 21:17:27 +0100 Subject: [PATCH] ci: always run all code checks regardless of failures (#2239) --- .github/workflows/test.yml | 47 ++++++++++++++++++++++++++++++++++---- 1 file changed, 42 insertions(+), 5 deletions(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 2b3a07d425..541095be2d 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -12,7 +12,6 @@ concurrency: jobs: e2e-tests: name: Run end-to-end test suites - runs-on: ubuntu-latest steps: @@ -25,24 +24,62 @@ jobs: server-unit-tests: name: Run server unit test suites and checks runs-on: ubuntu-latest + defaults: + run: + working-directory: ./server steps: - name: Checkout code uses: actions/checkout@v3 - - name: Run tests - run: cd server && npm ci && npm run check:all + - name: Run npm install + run: npm ci + + - name: Run linter + run: npm run lint + if: ${{ !cancelled() }} + + - name: Run formatter + run: npm run format + if: ${{ !cancelled() }} + + - name: Run tsc + run: npm run check + if: ${{ !cancelled() }} + + - name: Run unit tests & coverage + run: npm run test:cov + if: ${{ !cancelled() }} web-unit-tests: name: Run web unit test suites and checks runs-on: ubuntu-latest + defaults: + run: + working-directory: ./web steps: - name: Checkout code uses: actions/checkout@v3 - - name: Run tests - run: cd web && npm ci && npm run check:all + - name: Run npm install + run: npm ci + + - name: Run linter + run: npm run lint + if: ${{ !cancelled() }} + + - name: Run formatter + run: npm run format + if: ${{ !cancelled() }} + + - name: Run svelte checks + run: npm run check + if: ${{ !cancelled() }} + + - name: Run unit tests & coverage + run: npm run test:cov + if: ${{ !cancelled() }} mobile-unit-tests: name: Run mobile unit tests