Skip to content

Commit

Permalink
Run test workflow on Windows
Browse files Browse the repository at this point in the history
  • Loading branch information
codetheweb committed Sep 27, 2023
1 parent a393f15 commit 6fc6aa6
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion .github/workflows/npm-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,10 +4,13 @@ name: NPM Test
on: ["pull_request"]
jobs:
npm_test:
strategy:
matrix:
os: ["ubuntu-20.04", "windows-latest"]
if: "!contains(github.event.head_commit.message, 'skip ci')"
name: Run NPM Test
runs-on: ubuntu-latest
timeout-minutes: 30
runs-on: ${{ matrix.os }}
steps:
- name: Checkout
uses: actions/checkout@v1
Expand Down

0 comments on commit 6fc6aa6

Please sign in to comment.