chore(deps): update non-major #1980
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: Test && Release | |
on: | |
push: | |
pull_request: | |
branches: | |
- main | |
- beta | |
- alpha | |
jobs: | |
test: | |
runs-on: ${{ matrix.platform }} | |
name: Test on Node.js ${{ matrix.node-version }} / ${{ matrix.platform }} | |
strategy: | |
fail-fast: false | |
matrix: | |
platform: [ubuntu-latest] | |
node-version: [lts/*, current] | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-node@v4 | |
with: | |
node-version: ${{ matrix.node-version }} | |
- run: npm i pnpm@latest -g | |
- run: pnpm install | |
- run: pnpm lint | |
- run: pnpm build | |
- run: pnpm test | |
release: | |
name: Semantic Release | |
needs: test | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
# Need to fetch entire commit history to | |
# analyze every commit since last release | |
fetch-depth: 0 | |
- uses: actions/setup-node@v4 | |
with: | |
node-version: lts/* | |
- run: npm i pnpm@latest -g | |
- run: pnpm install | |
# Branches that will release new versions are defined in .releaserc.json | |
- run: pnpm semantic-release | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
NPM_TOKEN: ${{ secrets.NPM_PUBLISH_TOKEN }} |