fix(build): configure CI for NPM OIDC Tokens #140
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: Publish NPM Module | |
| on: | |
| push: | |
| branches: | |
| - main | |
| permissions: | |
| contents: read # for checkout | |
| jobs: | |
| unit-tests: | |
| uses: ./.github/workflows/_test.yml | |
| release: | |
| name: Semantic Release | |
| environment: | |
| name: Publish NPM Module | |
| url: https://www.npmjs.com/package/s2js | |
| runs-on: ubuntu-latest | |
| needs: unit-tests | |
| permissions: | |
| contents: write # to be able to publish a GitHub release | |
| issues: write # to be able to comment on released issues | |
| pull-requests: write # to be able to comment on released pull requests | |
| id-token: write # to enable use of OIDC for npm provenance | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v3 | |
| with: | |
| fetch-depth: 0 | |
| - name: Install Node | |
| uses: actions/setup-node@v3 | |
| with: | |
| node-version: 'lts/*' | |
| - name: Install Dependencies | |
| run: npm install | |
| - name: Ensure docs are valid | |
| run: npm run docs | |
| - name: Transpile to Javascript | |
| run: npm run build | |
| - name: Publish | |
| env: | |
| GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
| run: npx --yes semantic-release |