Skip to content

Commit

Permalink
fix: ci
Browse files Browse the repository at this point in the history
  • Loading branch information
cs50victor committed Feb 21, 2024
1 parent dae1591 commit ef0e001
Showing 1 changed file with 11 additions and 3 deletions.
14 changes: 11 additions & 3 deletions .github/workflows/ci-ts.yml
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,14 @@ jobs:
- name: Install Global Dependencies
run: bun install --ignore-scripts

# Errors out on build when separated into multiple steps
- name: Install, Build, and Lint Demo
run: cd demo && bun install --ignore-scripts && bun run build && bun run lint
- name: Install
working-directory: ./www
run: bun install --ignore-scripts

- name: Build
working-directory: ./www
run: bun run build

- name: Lint
working-directory: ./www
run: bun run lint

0 comments on commit ef0e001

Please sign in to comment.