Skip to content

Commit

Permalink
windows testing
Browse files Browse the repository at this point in the history
  • Loading branch information
seveibar committed Sep 25, 2024
1 parent 9835675 commit afd909b
Showing 1 changed file with 32 additions and 0 deletions.
32 changes: 32 additions & 0 deletions .github/workflows/windows-tests.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
name: Windows Tests

on:
push:
branches:
- main
pull_request:
branches:
- main

jobs:
tests:
runs-on: windows-latest
timeout-minutes: 10

steps:
- name: Checkout code
uses: actions/checkout@v2

- name: Setup bun
uses: oven-sh/setup-bun@v1
with:
bun-version: latest

- name: Install dependencies
run: bun install

- name: Build
run: bun run build

- name: Run tests
run: bun test --timeout 15000

0 comments on commit afd909b

Please sign in to comment.