Skip to content
This repository has been archived by the owner on Jun 15, 2024. It is now read-only.

Commit

Permalink
ci: build packages before typecheck
Browse files Browse the repository at this point in the history
  • Loading branch information
drichar committed Dec 19, 2023
1 parent bed938f commit 7ac5275
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 @@ -10,7 +10,7 @@ on:

jobs:
run-ci:
name: Run Unit Tests, Lint, and Build
name: Build, Lint, Typecheck, and Test
runs-on: ubuntu-latest

steps:
Expand Down Expand Up @@ -46,6 +46,9 @@ jobs:
- name: Install dependencies
run: pnpm install

- name: Build
run: pnpm build

- name: Lint
run: pnpm lint

Expand All @@ -57,6 +60,3 @@ jobs:

- name: Run tests
run: pnpm test

- name: Build
run: pnpm build

0 comments on commit 7ac5275

Please sign in to comment.