0.0.40 #1
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Npm Publish | |
on: | |
push: | |
branches: | |
- main | |
paths: | |
- package.json | |
- .github/workflows/npm-publish.yml | |
workflow_dispatch: | |
jobs: | |
main: | |
uses: deep-foundation/workflows/.github/workflows/[email protected] | |
secrets: | |
npm-token: ${{ secrets.NPM_TOKEN }} | |
with: | |
build-command: "npm run build" | |
test-command: "echo 'Tests are temporarily disabled'" | |
should-generate-documentation: false | |
generate-documentation-command: "npx typedoc --out ./docs --entryPointStrategy expand ./imports" |