docs: update react component example #36
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: Release (semantic-release) | |
on: | |
workflow_dispatch: | |
push: | |
branches: ["master"] | |
permissions: | |
contents: read | |
jobs: | |
release: | |
name: Release | |
runs-on: ubuntu-latest | |
permissions: | |
contents: write | |
issues: write | |
pull-requests: write | |
id-token: write | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: pnpm/action-setup@v2 | |
with: | |
version: latest | |
run_install: true | |
- uses: actions/setup-node@v3 | |
with: | |
node-version: 21.x | |
cache: pnpm | |
- run: pnpm install | |
- run: pnpm tsc | |
- run: pnpm test | |
- run: pnpm build | |
- run: docker run --rm $(docker build -f src/e2e/Dockerfile -q .) | |
timeout-minutes: 10 | |
- env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
NPM_TOKEN: ${{ secrets.NPM_TOKEN }} | |
run: npx semantic-release |