Skip to content
This repository was archived by the owner on Mar 20, 2023. It is now read-only.
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ jobs:
run: npm ci

- name: Build NPM package
run: npm run build
run: npm run build:npm

- name: Run Integration Tests
run: npm run check:integrations
Expand Down
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@
"scripts": {
"preversion": ". ./resources/checkgit.sh && npm ci",
"changelog": "node resources/gen-changelog.js",
"test": "npm run lint && npm run check && npm run testonly:cover && npm run prettier:check && npm run check:spelling && npm run build && npm run check:integrations",
"test": "npm run lint && npm run check && npm run testonly:cover && npm run prettier:check && npm run check:spelling && npm run build:npm && npm run check:integrations",
"lint": "eslint .",
"check": "tsc --noEmit",
"testonly": "mocha src/**/__tests__/**/*.ts",
Expand All @@ -46,7 +46,7 @@
"prettier:check": "prettier --check .",
"check:spelling": "cspell '**/*'",
"check:integrations": "mocha --full-trace integrationTests/*-test.js",
"build": "node resources/build.js",
"build:npm": "node resources/build-npm.js",
"start": "node -r ./resources/register.js examples/index.ts"
},
"dependencies": {
Expand Down
File renamed without changes.