Skip to content

Commit

Permalink
add publish workflow action, build and test definitions in package.json
Browse files Browse the repository at this point in the history
  • Loading branch information
jaydanielsencision committed Aug 29, 2024
1 parent b94b44c commit dfd61bf
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/npm-publish.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,6 @@ jobs:
version: ${{ needs.read-version.outputs.version }}-pr.${{ github.event.pull_request.number }}
node-version: 20
linter: false
test: false
test: true
build-step: true
secrets: inherit
6 changes: 4 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "xlsx-stream",
"description": "Creates SpreadsheetML (.xlsx) files in sequence with streaming interface.",
"version": "0.1.4",
"version": "0.2.0",
"homepage": "https://github.com/nunukim/node-xlsx-stream",
"author": {
"name": "Ryota Suzuki",
Expand All @@ -26,7 +26,9 @@
"node": ">0.8.0"
},
"scripts": {
"grunt": "grunt"
"grunt": "grunt",
"test": "grunt",
"build": "npm install"
},
"devDependencies": {
"grunt": "^1.6.1",
Expand Down

0 comments on commit dfd61bf

Please sign in to comment.