diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 8a32f2f..b34c0c3 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -31,8 +31,8 @@ jobs: - name: Validate PR commits with commitlint if: github.event_name == 'pull_request' run: npx commitlint --from ${{ github.event.pull_request.head.sha }}~${{ github.event.pull_request.commits }} --to ${{ github.event.pull_request.head.sha }} --verbose - svelte-check: - name: Svelte check + type-check: + name: Type check runs-on: ubuntu-latest steps: - uses: actions/checkout@v4 @@ -44,7 +44,7 @@ jobs: run: npm update npm -g - name: Install dependencies run: npm ci - - name: Run Svelte check + - name: Run type check run: npm run check test: name: Playwright test @@ -94,7 +94,7 @@ jobs: changes-since-last-deploy: name: Compare changes since last deploy runs-on: ubuntu-latest - needs: [lint, svelte-check, test, check-deploy] + needs: [lint, type-check, test, check-deploy] if: ${{ needs.check-deploy.outputs.deployNext == 'true' }} environment: name: github