ci: add dry_release job #4502
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: Test | |
| "on": | |
| push: | |
| branches: | |
| - master | |
| - renovate/** | |
| pull_request: | |
| types: | |
| - opened | |
| - synchronize | |
| jobs: | |
| test_matrix: | |
| strategy: | |
| matrix: | |
| node-version: | |
| - 20.8.1 # minimum supported Node version | |
| - 20 | |
| - 21 | |
| - 22 | |
| os: | |
| - ubuntu-latest | |
| - macos-latest | |
| - windows-latest | |
| runs-on: "${{ matrix.os }}" | |
| steps: | |
| - uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 | |
| - name: "Use Node.js ${{ matrix.node-version }}" | |
| uses: actions/setup-node@6044e13b5dc448c55e2357c09f80417699197238 # v6.2.0 | |
| with: | |
| node-version: "${{ matrix.node-version }}" | |
| cache: npm | |
| - run: npm ci | |
| - name: Ensure dependencies are compatible with the version of node | |
| run: npx ls-engines@v0.9.4 | |
| - run: npm run test | |
| test: | |
| runs-on: ubuntu-latest | |
| needs: test_matrix | |
| steps: | |
| - uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 | |
| - name: "Use Node.js ${{ matrix.node-version }}" | |
| uses: actions/setup-node@6044e13b5dc448c55e2357c09f80417699197238 # v6.2.0 | |
| with: | |
| node-version: "${{ matrix.node-version }}" | |
| cache: npm | |
| - run: npm ci | |
| - run: npm run lint | |
| dry_release: | |
| # permissions: | |
| # contents: read # to be able to publish a GitHub release | |
| # issues: read # to be able to comment on released issues | |
| # pull-requests: write # to be able to comment on released pull requests | |
| # id-token: write # to enable use of OIDC for npm provenance | |
| name: dry_release | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 | |
| - uses: actions/setup-node@6044e13b5dc448c55e2357c09f80417699197238 # v6.2.0 | |
| with: | |
| cache: npm | |
| node-version: lts/* | |
| - run: npm ci | |
| - run: npx semantic-release --dry-run --ci false --branches $GITHUB_REF | |
| env: | |
| GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |