Skip to content

Commit

Permalink
ci: add workflow to test windows paths
Browse files Browse the repository at this point in the history
  • Loading branch information
qurafi committed Jun 13, 2023
1 parent 8f1e6f6 commit 37906d6
Showing 1 changed file with 20 additions and 0 deletions.
20 changes: 20 additions & 0 deletions .github/workflows/windows_test.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
# A ci to test windows paths
name: Windows-tests

on: workflow_dispatch

permissions:
contents: read # to fetch code (actions/checkout)

jobs:
test-windows:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: pnpm/[email protected]
- uses: actions/setup-node@v3
with:
node-version: "16.x"
cache: pnpm
- run: pnpm install --frozen-lockfile
- run: pnpm run test

0 comments on commit 37906d6

Please sign in to comment.