Merge pull request #580 from EricCrosson/renovate/tsx-4.x #609
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@v6.0.2 | |
| - name: Use Node.js ${{ matrix.node-version }} | |
| uses: actions/setup-node@v6.4.0 | |
| with: | |
| node-version: ${{ matrix.node-version }} | |
| cache: npm | |
| - name: Cache npm dependencies | |
| uses: actions/cache@v5.0.5 | |
| 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.0.27 |