Skip to content

Commit

Permalink
Skip CI steps on Windows
Browse files Browse the repository at this point in the history
  • Loading branch information
karlhorky committed Nov 14, 2023
1 parent edc7360 commit 3405f71
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions .github/workflows/build-lint-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -49,12 +49,17 @@ jobs:
working-directory: docker

- name: Lint
if: runner.os != 'Windows'
run: pnpm lint

- run: pnpm tsc
if: runner.os != 'Windows'
- run: pnpm tsc --project bin/tsconfig.json
if: runner.os != 'Windows'
- run: pnpm tsc --project docker/tsconfig.json
if: runner.os != 'Windows'
- run: pnpm tsc --project tsconfig.nonsrc.json
if: runner.os != 'Windows'

- name: Build
run: pnpm build
Expand Down

0 comments on commit 3405f71

Please sign in to comment.