test #7
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: Test publish | |
on: | |
push: | |
branches: | |
- 'igr/publish-fix-try-2' | |
jobs: | |
publish-npm-test: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
# use Volta to manage yarn/node versions | |
- uses: volta-cli/action@v4 | |
- run: which yarn && yarn --version | |
# - run: yarn policies set-version 4.4.0 && npm install -g yarn | |
- run: yarn bootstrap | |
- run: npm i -g [email protected] | |
- run: npm --version | |
env: | |
NODE_AUTH_TOKEN: ${{secrets.npm_token}} |