Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions azure-pipeline.pr.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,9 @@ jobs:
pool:
vmImage: 'macos-15'
steps:
- checkout: self
fetchDepth: 2

- template: scripts/ci/common-setup.yml

- script: npm run compile
Expand Down
4 changes: 3 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -4278,7 +4278,8 @@
"compile:web": "webpack --mode development --config-name extension:webworker --config-name webviews",
"lint": "eslint --fix --cache . --ext .ts,.tsx",
"package": "npx vsce package",
"test": "npm run test:preprocess && node ./out/src/test/runTests.js",
"test": "npm run test:preprocess && npm run test:scripts && node ./out/src/test/runTests.js",
"test:scripts": "mocha \"out/src/test/scripts/**/*.test.js\"",
"test:preprocess": "npm run compile:test && npm run test:preprocess-gql && npm run test:preprocess-svg && npm run test:preprocess-fixtures",
"browsertest:preprocess": "tsc ./src/test/browser/runTests.ts --outDir ./dist/browser/test --rootDir ./src/test/browser --target es6 --module commonjs",
"browsertest": "npm run browsertest:preprocess && node ./dist/browser/test/runTests.js",
Expand All @@ -4290,6 +4291,7 @@
"watch:web": "webpack --watch --mode development --config-name extension:webworker --config-name webviews",
"hygiene": "node ./build/hygiene.js",
"check:commands": "node scripts/check-commands.js",
"check:package-quarantine": "node scripts/check-package-quarantine.js",
"prepare": "husky install",
"update:codicons": "npx ts-node --project tsconfig.scripts.json build/update-codicons.ts"
},
Expand Down
Loading