v3.0.3 #5
Workflow file for this run
This file contains hidden or 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: | |
| release: | |
| types: [created] | |
| workflow_dispatch: | |
| env: | |
| NODE_VERSION: 16 | |
| NODE_AUTH_TOKEN: ${{ secrets.NPM_PUBLISH_TOKEN }} | |
| jobs: | |
| build: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - uses: actions/setup-node@v4 | |
| with: | |
| node-version: ${{ env.NODE_VERSION }} | |
| registry-url: https://registry.npmjs.org/ | |
| - name: Install Python setuptools | |
| # Reasoning for this in `ci.yml` | |
| run: | | |
| python3 -m venv CI_venv | |
| source CI_venv/bin/activate | |
| python3 -m pip install setuptools | |
| - name: Install Dependencies | |
| run: | | |
| source CI_venv/bin/activate | |
| npm config set python "$(which python3)" | |
| npm ci | |
| - run: | | |
| npm run test:node | |
| npm run test:native | |
| - run: npm publish --access public |