Skip to content

Commit

Permalink
add unit tests in CI
Browse files Browse the repository at this point in the history
  • Loading branch information
noahm committed Apr 1, 2024
1 parent a891600 commit b3d7e1a
Showing 1 changed file with 14 additions and 9 deletions.
23 changes: 14 additions & 9 deletions .github/workflows/status-checks.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,9 +13,7 @@ jobs:
node-version: 20
cache: "yarn"
- run: yarn --immutable

- name: Biome Lint/Format
run: yarn lint:ci
- run: yarn lint:ci
tsc:
runs-on: ubuntu-latest
name: Typescript
Expand All @@ -26,9 +24,18 @@ jobs:
node-version: 20
cache: "yarn"
- run: yarn --immutable

- name: Typescript
run: yarn typecheck
- run: yarn typecheck
test:
runs-on: ubuntu-latest
name: Tests
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: 20
cache: "yarn"
- run: yarn --immutable
- run: yarn test
build:
runs-on: ubuntu-latest
name: Vite Build
Expand All @@ -39,7 +46,5 @@ jobs:
node-version: 20
cache: "yarn"
- run: yarn --immutable

- name: Vite Build
run: yarn build
- run: yarn build

0 comments on commit b3d7e1a

Please sign in to comment.