This repository was archived by the owner on Sep 15, 2025. It is now read-only.
chore(deps): update actions/setup-node action to v5 (#385) #366
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 npm package | |
| on: | |
| push: | |
| branches: | |
| - main | |
| jobs: | |
| release: | |
| name: Release | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@main | |
| - uses: actions/setup-node@v5 | |
| with: | |
| node-version: '18.x' | |
| - run: npm ci | |
| - run: npm run build | |
| - run: npm run lint | |
| - run: npx -p @semantic-release/changelog -p semantic-release semantic-release | |
| env: | |
| GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
| NPM_TOKEN: ${{ secrets.NPM_TOKEN }} |