Skip to content

Commit

Permalink
chore: Add build step to CI workflow and update package.json accordingly
Browse files Browse the repository at this point in the history
  • Loading branch information
m-mdy-m committed Jan 21, 2025
1 parent 149d320 commit db49113
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
2 changes: 2 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,5 +30,7 @@ jobs:
node-version: 20
- name: Install dependencies
run: npm install
- name: Build Dependencies
run: npm run build
- name: Run unit tests
run: npm run test:unit
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
"test": "npm run test:unit",
"test:unit": "mocha --require ts-node/register test/unit/**/*.spec.ts",
"benchmark": "ts-node ./benchmark/gland.ts",
"build": "rm -r dist/* & tsc",
"build": "tsc",
"chmod": "chmod +x ./scripts/release.sh",
"release": "npm run chmod && ./scripts/release.sh"
},
Expand Down

0 comments on commit db49113

Please sign in to comment.