Skip to content

Commit

Permalink
wip
Browse files Browse the repository at this point in the history
  • Loading branch information
Julien-R44 committed Apr 8, 2024
1 parent 964cbfb commit a777fd6
Showing 1 changed file with 26 additions and 1 deletion.
27 changes: 26 additions & 1 deletion .github/workflows/check.yml
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ jobs:
- name: Typecheck
run: pnpm typecheck

tests:
tests_linux:
runs-on: ubuntu-latest
timeout-minutes: 10

Expand All @@ -73,3 +73,28 @@ jobs:
- name: Run tests
run: FORCE_COLOR=1 pnpm test

test_windows:
runs-on: windows-latest
timeout-minutes: 10

steps:
- uses: actions/checkout@v4

- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version: 21

- name: Install pnpm
run: |
corepack enable
corepack prepare pnpm@latest --activate
- name: Install dependencies
run: |
pnpm install
pnpm -r build
- name: Run tests
run: FORCE_COLOR=1 pnpm test

0 comments on commit a777fd6

Please sign in to comment.