Skip to content

Commit

Permalink
feat(ci): 支持 Windows 环境测试
Browse files Browse the repository at this point in the history
  • Loading branch information
ZakaryCode committed Apr 25, 2023
1 parent 74fb550 commit 1481fc9
Showing 1 changed file with 6 additions and 3 deletions.
9 changes: 6 additions & 3 deletions .github/workflows/nodejs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,13 +14,16 @@ permissions:

jobs:
build:

runs-on: ubuntu-latest

strategy:
fail-fast: false
matrix:
node-version: [14.x, 16.x]
os: [windows-latest, ubuntu-latest]
exclude:
- os: windows-latest
node-version: 16.x

runs-on: ${{ matrix.os }}

steps:
- name: Checkout
Expand Down

0 comments on commit 1481fc9

Please sign in to comment.