Merge pull request #510 from EricCrosson/renovate/major-semantic-rele… #548
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 | |
| on: | |
| push: | |
| branches: | |
| - master | |
| - next | |
| - next-major | |
| - beta | |
| - alpha | |
| - "[0-9]+.[0-9]+.x" | |
| - "[0-9]+.x" | |
| jobs: | |
| test: | |
| runs-on: ubuntu-latest | |
| strategy: | |
| matrix: | |
| node-version: | |
| - lts/* | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v5 | |
| - name: Use Node.js ${{ matrix.node-version }} | |
| uses: actions/setup-node@v5 | |
| with: | |
| node-version: ${{ matrix.node-version }} | |
| cache: npm | |
| - name: Cache npm dependencies | |
| uses: actions/cache@v4 | |
| id: cache-node-modules | |
| with: | |
| path: node_modules | |
| key: ${{ runner.os }}-node-${{ hashFiles('package-lock.json') }} | |
| - name: Install npm dependencies | |
| if: steps.cache-node-modules.outputs.cache-hit != 'true' | |
| run: npm ci --ignore-scripts | |
| - name: Type check | |
| run: npm run type-check | |
| - name: Test | |
| run: npm test | |
| release: | |
| needs: | |
| - test | |
| uses: semantic-release-action/github-actions/.github/workflows/release.yml@v5 |