Skip to content

Commit 7474607

Browse files
committed
windows, ok?
1 parent 993e81d commit 7474607

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

.github/workflows/publish.yaml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ on:
66

77
jobs:
88
build:
9-
runs-on: ubuntu-latest
9+
runs-on: windows-latest
1010
name: NPM Publish
1111
steps:
1212
- uses: actions/checkout@v4
@@ -18,6 +18,8 @@ jobs:
1818
run: yarn --frozen-lockfile
1919
- name: Build
2020
run: yarn build
21+
- name: Test
22+
run: yarn test
2123
- name: Publish
2224
uses: JS-DevTools/npm-publish@v2
2325
with:

.github/workflows/test.yaml

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ jobs:
99
runs-on: windows-latest
1010
strategy:
1111
matrix:
12-
node: ["20"]
12+
node: ["14", "16", "18", "20", "22"]
1313
name: Test on Node.js ${{ matrix.node }}
1414
steps:
1515
- uses: actions/checkout@v4
@@ -23,8 +23,6 @@ jobs:
2323
run: yarn --frozen-lockfile
2424
- name: Build
2525
run: yarn build
26-
- name: Setup tmate session
27-
uses: mxschmitt/action-tmate@v3
2826
- name: Test
2927
run: yarn test
3028
- name: Check style

0 commit comments

Comments
 (0)