Skip to content

Commit 68927ec

Browse files
committed
build: remove test:pack test
1 parent 0a26361 commit 68927ec

File tree

18 files changed

+9909
-1869
lines changed

18 files changed

+9909
-1869
lines changed

.github/workflows/ci.yml

+6-4
Original file line numberDiff line numberDiff line change
@@ -14,13 +14,14 @@ jobs:
1414
uses: actions/setup-node@v4
1515
with:
1616
node-version: 22.x
17-
- run: npm ci
17+
18+
# Using `install` instead of `ci` because integrity checks for `npm pack` tarballs differ by platform
19+
- run: npm install
1820
- run: npm run lint
1921
- run: npm run docs:diff
2022

2123
test:
2224
runs-on: ubuntu-latest
23-
needs: lint
2425
strategy:
2526
fail-fast: false
2627
matrix:
@@ -32,7 +33,8 @@ jobs:
3233
with:
3334
node-version: ${{ matrix.node-version }}
3435
cache: npm
35-
- run: npm ci
36+
37+
# Using `install` instead of `ci` because integrity checks for `npm pack` tarballs differ by platform
38+
- run: npm install
3639
- run: npm run test
3740
- run: npm run test:node
38-
- run: npm run test:pack

.husky/pre-commit

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
npx --no-install lint-staged
1+
npm test

examples/benchmark/package-lock.json

+14-71
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

examples/benchmark/package.json

+1
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@
55
"scripts": {
66
"build": "true",
77
"start": "npm run build && npx http-server . -o",
8+
"pretest": "HUSKY=0 npm install",
89
"test": "node node.js"
910
},
1011
"dependencies": {

examples/browser-esmodules/package-lock.json

+7-64
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)