Skip to content

Commit 709f92e

Browse files
committed
fix: run workflow on ubuntu & remove build from prepare script
1 parent 3b7216a commit 709f92e

File tree

2 files changed

+2
-3
lines changed

2 files changed

+2
-3
lines changed

.github/workflows/main.yml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,11 +8,10 @@ jobs:
88
build:
99
name: ⚒️ Build, lint, and test on Node ${{ matrix.node }} and ${{ matrix.os }}
1010

11-
runs-on: ${{ matrix.os }}
11+
runs-on: ubuntu-latest
1212
strategy:
1313
matrix:
1414
node: ['14.x', '16.x']
15-
os: [ubuntu-latest, windows-latest, macOS-latest]
1615

1716
steps:
1817
- name: Checkout repo

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
"test": "dts test",
2121
"test:dev": "dts test --watch",
2222
"lint": "dts lint src test mocks",
23-
"prepare": "husky install && dts build",
23+
"prepare": "husky install",
2424
"size": "size-limit",
2525
"analyze": "size-limit --why"
2626
},

0 commit comments

Comments
 (0)