v5.2.1 #2
Workflow file for this run
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: Publish Package to npmjs | |
# see: https://docs.github.com/en/actions/publishing-packages/publishing-nodejs-packages#publishing-packages-to-the-npm-registry | |
on: | |
release: | |
types: ["published"] | |
workflow_dispatch: | |
# manually triggered | |
jobs: | |
publish-npm: | |
runs-on: ubuntu-latest | |
permissions: | |
contents: read | |
packages: write | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: actions/setup-node@v3 | |
with: | |
node-version: 18.x | |
cache: "npm" | |
registry-url: "https://npm.pkg.github.com" | |
- run: npm ci | |
# Run tests again to ensure quality. | |
- run: npm test | |
# Compile Typescript code to vanilla JavaScript + type declarations. | |
- run: npm run build | |
# Publish from inside the build directory. | |
- run: npm publish | |
working-directory: dist | |
env: | |
NODE_AUTH_TOKEN: ${{ secrets.GITHUB_TOKEN }} |