Skip to content

Commit

Permalink
fix: add missing build to package
Browse files Browse the repository at this point in the history
  • Loading branch information
carpasse committed Feb 14, 2024
1 parent 2a4384e commit 2517235
Show file tree
Hide file tree
Showing 7 changed files with 26 additions and 66 deletions.
31 changes: 0 additions & 31 deletions .github/workflows/node.js.yml

This file was deleted.

9 changes: 9 additions & 0 deletions .github/workflows/publishToNPM.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
name: Publish to NPM
on:
push:
branches: ['master', 'beta', 'alpha']
jobs:
release:
uses: carpasse/reusable-workflows/.github/workflows/publishToNPM.yml@master
secrets:
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}
35 changes: 0 additions & 35 deletions .github/workflows/release.yml

This file was deleted.

5 changes: 5 additions & 0 deletions .github/workflows/runTests.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
name: Run tests
on: [pull_request]
jobs:
validation:
uses: carpasse/reusable-workflows/.github/workflows/runTests.yml@master
5 changes: 5 additions & 0 deletions .github/workflows/validateCodebase.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
name: Validate Codebase
on: [pull_request]
jobs:
validation:
uses: carpasse/reusable-workflows/.github/workflows/validateCodebase.yml@master
5 changes: 5 additions & 0 deletions .github/workflows/validateCommits.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
name: Validate commit messages
on: [pull_request]
jobs:
validation:
uses: carpasse/reusable-workflows/.github/workflows/validateCommits.yml@master
2 changes: 2 additions & 0 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -43,6 +43,7 @@
"husky": "npx husky install && npm run husky:setup",
"prepare": "shx test -d .husky || npm run husky",
"pre-commit": "pretty-quick --staged && npm run lint",
"license-check": "npx @onebeyond/license-checker check \"(MIT OR GPL-1.0+) AND 0BSD\"",
"pre-push": "npm run test",
"commitlint": "commitlint --edit"
},
Expand All @@ -62,6 +63,7 @@
"devDependencies": {
"@commitlint/cli": "^18.4.3",
"@commitlint/config-conventional": "^18.4.3",
"@onebeyond/license-checker": "^2.0.1",
"@semantic-release/commit-analyzer": "^11.1.0",
"@semantic-release/git": "^10.0.1",
"@semantic-release/github": "^9.2.6",
Expand Down

0 comments on commit 2517235

Please sign in to comment.