Skip to content

Commit

Permalink
ci: check astro as well
Browse files Browse the repository at this point in the history
  • Loading branch information
Epoxide committed Jul 16, 2024
1 parent bee4f5d commit d4a7a46
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -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
Expand Down Expand Up @@ -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
Expand Down

0 comments on commit d4a7a46

Please sign in to comment.