chore(deps): update yarn to v4.15.0 (#566) #1593
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 | |
| # yamllint disable-line rule:truthy | |
| on: | |
| workflow_dispatch: | |
| push: | |
| jobs: | |
| release: | |
| name: Release | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout code | |
| uses: actions/checkout@v6.0.2 | |
| - uses: actions/setup-node@v6.4.0 | |
| with: | |
| node-version-file: '.nvmrc' | |
| cache: yarn | |
| - name: Run install | |
| uses: borales/actions-yarn@v5.0.0 | |
| with: | |
| cmd: install --immutable | |
| - name: Format | |
| run: yarn run format --check | |
| - name: Lint | |
| run: yarn run lint | |
| - name: Test | |
| run: yarn run test | |
| - name: Build | |
| run: yarn run build | |
| - name: Release | |
| env: | |
| GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
| NPM_TOKEN: ${{ secrets.NPM_TOKEN }} | |
| run: yarn run release |