remove ts-sinon dependency, upgrade sinon (#804) #406
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 unstable | |
on: | |
push: | |
branches: | |
- main | |
workflow_dispatch: | |
jobs: | |
publish-npm-unstable: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-node@v4 | |
with: | |
node-version: 18.8.0 | |
registry-url: https://registry.npmjs.org/ | |
- run: npm install | |
# builds all bundles | |
- run: npm run build | |
# Note - this is not required but it gives a clean failure prior to attempting a release if the GH workflow runner is not authenticated with npm.js | |
- run: npm whoami | |
env: | |
NODE_AUTH_TOKEN: ${{secrets.npm_token}} | |
- run: npm run publish:unstable | |
env: | |
NODE_AUTH_TOKEN: ${{secrets.npm_token}} |