chore(deps): update node.js to v20 (#72) #62
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
on: | |
push: | |
branches: | |
- main | |
name: release | |
jobs: | |
release-pr: | |
runs-on: ubuntu-latest | |
outputs: | |
release_created: ${{ steps.release.outputs.release_created }} | |
steps: | |
- uses: google-github-actions/release-please-action@v3 | |
id: release | |
with: | |
release-type: node | |
token: ${{ secrets.RELEASE_PR_TOKEN }} | |
changelog-types: |- | |
[ | |
{ "type": "feat", "section": "🔖 Features", "hidden": false }, | |
{ "type": "fix", "section": "🐛 Bug Fixes", "hidden": false }, | |
{ "type": "chore", "section": "🧹 Miscellaneous", "hidden": false } | |
] | |
# Format changelog, workaround for https://github.com/google-github-actions/release-please-action/issues/542 | |
# Taken from https://github.com/remarkablemark/release-please-extra-files-demo/blob/master/.github/workflows/release-please.yml | |
- uses: actions/checkout@v4 | |
if: ${{ steps.release.outputs.pr }} | |
with: | |
ref: ${{ fromJson(steps.release.outputs.pr).headBranchName }} | |
- name: Configure Git user | |
if: ${{ steps.release.outputs.pr }} | |
run: | | |
git config --global user.name 'github-actions[bot]' | |
git config --global user.email 'github-actions[bot]@users.noreply.github.com' | |
git --no-pager show --name-only | |
- name: Format CHANGELOG.md | |
if: ${{ steps.release.outputs.pr }} | |
run: npx prettier --write CHANGELOG.md | |
- name: Commit and push | |
if: ${{ steps.release.outputs.pr }} | |
run: | | |
git add CHANGELOG.md | |
git commit -m 'chore: Format CHANGELOG.md with Prettier' --no-verify | |
git push | |
publish_npm: | |
name: Publish to npm | |
runs-on: ubuntu-latest | |
needs: [release-pr] | |
if: needs.release-pr.outputs.release_created | |
steps: | |
- uses: actions/checkout@v4 | |
- run: corepack enable | |
- uses: actions/setup-node@v3 | |
with: | |
node-version: 16 | |
cache: 'pnpm' | |
- name: Install dependencies | |
run: pnpm install | |
- name: Config npm | |
run: echo "//registry.npmjs.org/:_authToken=${NPM_TOKEN}" > .npmrc | |
env: | |
NPM_TOKEN: ${{ secrets.NPM_TOKEN }} | |
- name: Publish to npm | |
run: pnpm publish --access public --no-git-checks |