Skip to content

Commit 6f8b8ef

Browse files
committed
Restore CI
1 parent 457e240 commit 6f8b8ef

File tree

3 files changed

+20
-3
lines changed

3 files changed

+20
-3
lines changed

.github/workflows/build-test.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ jobs:
3535
COVERAGE: true
3636
FLAKEY: false
3737
# Not using `npm test` since it rebuilds source which npm ci has already done
38-
run: npm run test:vitest
38+
run: npm run lint && npm run test:unit
3939
- name: Coveralls GitHub Action
4040
uses: coverallsapp/[email protected]
4141
timeout-minutes: 2

package-lock.json

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

package.json

+3-2
Original file line numberDiff line numberDiff line change
@@ -133,8 +133,8 @@
133133
"test:vitest:min": "cross-env MINIFY=true vitest run",
134134
"test:vitest:watch": "vitest",
135135
"test:ts": "run-p test:ts:*",
136-
"test:ts:core": "tsc -p test/ts/ && mocha --require \"@babel/register\" test/ts/**/*-test.js",
137-
"test:ts:compat": "tsc -p compat/test/ts/",
136+
"test:ts:core": "tsc --skipLibCheck -p test/ts/ && mocha --require \"@babel/register\" test/ts/**/*-test.js",
137+
"test:ts:compat": "tsc --skipLibCheck -p compat/test/ts/",
138138
"test:mocha": "mocha --recursive --require \"@babel/register\" test/shared test/node",
139139
"test:mocha:watch": "npm run test:mocha -- --watch",
140140
"lint": "run-s oxlint tsc",
@@ -211,6 +211,7 @@
211211
"@babel/preset-env": "^7.26.0",
212212
"@babel/register": "^7.25.9",
213213
"@biomejs/biome": "^1.9.4",
214+
"@types/chai": "^5.0.1",
214215
"@types/mocha": "^10.0.0",
215216
"@types/node": "^18.0.0",
216217
"@types/sinon": "^17.0.3",

0 commit comments

Comments
 (0)