Skip to content

Commit

Permalink
CI: Fix typecheck workflow.
Browse files Browse the repository at this point in the history
  • Loading branch information
filiphsps committed Nov 17, 2023
1 parent 99f6c4c commit 6c864e7
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -56,6 +56,7 @@ jobs:
test:
name: 🧪 Test
timeout-minutes: 10
needs: [build]
runs-on: ubuntu-latest
steps:
- name: 🕶️ Checkout repository
Expand All @@ -64,6 +65,9 @@ jobs:
- name: 📦 Install
uses: ./.github/common/install

- name: 🔨 Build
run: npm run build

- name: 🧪 Test
run: npm run test

Expand All @@ -75,6 +79,7 @@ jobs:
typecheck:
name: ✅ Typecheck
timeout-minutes: 10
needs: [build]
runs-on: ubuntu-latest
steps:
- name: 🕶️ Checkout repository
Expand All @@ -83,5 +88,8 @@ jobs:
- name: 📦 Install
uses: ./.github/common/install

- name: 🔨 Build
run: npm run build

- name: ✅ Typecheck
run: npm run typecheck

0 comments on commit 6c864e7

Please sign in to comment.