chore: Update GitHub Actions workflows for npm trusted publishers (#6) #11
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: release | |
| on: [push, pull_request] | |
| concurrency: | |
| group: ${{ github.workflow }}-${{ github.ref }} | |
| cancel-in-progress: true | |
| jobs: | |
| test: | |
| name: π§ͺ Test | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: β¬οΈ Checkout repo | |
| uses: actions/checkout@v5 | |
| - name: π Setup bun | |
| uses: oven-sh/setup-bun@v1 | |
| - name: π₯ Download deps | |
| run: bun install | |
| - name: π§ͺ Test | |
| run: bun test | |
| release: | |
| name: π Release | |
| needs: [test] | |
| runs-on: ubuntu-latest | |
| if: | |
| ${{ github.repository == 'epicweb-dev/remember' && | |
| contains('refs/heads/main,refs/heads/beta,refs/heads/next,refs/heads/alpha', | |
| github.ref) && github.event_name == 'push' }} | |
| permissions: | |
| contents: write # to be able to publish a GitHub release | |
| id-token: write # to enable use of OIDC for npm provenance | |
| issues: write # to be able to comment on released issues | |
| pull-requests: write # to be able to comment on released pull requests | |
| steps: | |
| - name: β¬οΈ Checkout repo | |
| uses: actions/checkout@v5 | |
| # I'd prefer to use bun, but I got this error when I tried using bunx instead of npx: | |
| # error TS5042: Option 'project' cannot be mixed with source files on a command line. | |
| # error: "tsc" exited with code 1 (SIGHUP) | |
| # Also, I don't know how to use bun instead of node for semantic-release π€·ββοΈ | |
| - name: β Setup node | |
| uses: actions/setup-node@v6 | |
| with: | |
| node-version: lts/* | |
| - name: π₯ Download deps | |
| uses: bahmutov/npm-install@v1 | |
| with: | |
| useLockFile: false | |
| - name: πͺ Generate Types | |
| run: | |
| npx -p typescript tsc --declaration --emitDeclarationOnly --allowJs | |
| --checkJs --downlevelIteration --module nodenext --moduleResolution | |
| nodenext --target es2022 --outDir . index.js | |
| - name: π Release | |
| uses: cycjimmy/semantic-release-action@v5.0.2 | |
| with: | |
| semantic_version: 25 | |
| branches: | | |
| [ | |
| '+([0-9])?(.{+([0-9]),x}).x', | |
| 'main', | |
| 'next', | |
| 'next-major', | |
| {name: 'beta', prerelease: true}, | |
| {name: 'alpha', prerelease: true} | |
| ] | |
| env: | |
| GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} |