Skip to content

Commit

Permalink
Added build command
Browse files Browse the repository at this point in the history
  • Loading branch information
Lars Scheibling committed Nov 21, 2022
1 parent d9661dd commit 9cda510
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 2 deletions.
4 changes: 3 additions & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,9 @@ jobs:
with:
node-version: 18.0.0
- name: "Run CI"
run: npm ci
run: |
npm ci
npm run build
- name: "Add to latest release"
uses: softprops/action-gh-release@v1
with:
Expand Down
3 changes: 2 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -138,7 +138,8 @@
"watch": "tsc -watch -p ./",
"pretest": "npm run compile && npm run lint",
"lint": "eslint src --ext ts",
"test": "node ./out/test/runTest.js"
"test": "node ./out/test/runTest.js",
"build": "vsce package"
},
"devDependencies": {
"@types/glob": "^8.0.0",
Expand Down

0 comments on commit 9cda510

Please sign in to comment.