We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4cc19e7 commit d451c23Copy full SHA for d451c23
.github/workflows/ci.yml
@@ -169,8 +169,14 @@ jobs:
169
170
test-napi:
171
name: Test NAPI
172
- runs-on: ubuntu-latest
+ strategy:
173
+ matrix:
174
+ os: [ubuntu-latest, windows-latest]
175
+ runs-on: ${{ matrix.os }}
176
steps:
177
+ - name: Enable long paths on Windows
178
+ if: matrix.os == 'windows-latest'
179
+ run: git config --system core.longpaths true
180
- uses: taiki-e/checkout-action@b13d20b7cda4e2f325ef19895128f7ff735c0b3d # v1.3.1
181
- uses: dorny/paths-filter@de90cc6fb38fc0963ad72b210f1f284cd68cea36 # v3.0.2
182
id: filter
0 commit comments