chore(deps): update dependency semantic-release to v22.0.7 #2263
Workflow file for this run
This file contains 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: | |
- 18.17.0 | |
- 20.6.1 | |
- 20 | |
os: | |
- ubuntu-latest | |
- macos-latest | |
- windows-latest | |
runs-on: "${{ matrix.os }}" | |
steps: | |
- uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1 | |
- name: "Use Node.js ${{ matrix.node-version }}" | |
uses: actions/setup-node@8f152de45cc393bb48ce5d89d36b731f54556e65 # v4 | |
with: | |
node-version: "${{ matrix.node-version }}" | |
cache: npm | |
- run: npm clean-install | |
- run: "npm run test:ci" | |
test: | |
runs-on: ubuntu-latest | |
needs: test_matrix | |
if: always() | |
steps: | |
- uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1 | |
- uses: actions/setup-node@8f152de45cc393bb48ce5d89d36b731f54556e65 # v4 | |
with: | |
node-version: "lts/*" | |
cache: npm | |
- run: npm clean-install | |
- run: npm audit signatures | |
- name: Ensure dependencies are compatible with the engines range | |
run: npx ls-engines | |
- run: npm run lint | |
# https://github.com/lirantal/lockfile-lint#readme | |
- name: Scan lockfile for security issues | |
run: npx lockfile-lint --path package-lock.json | |
- name: All matrix versions passed | |
if: ${{ !(contains(needs.*.result, 'failure')) }} | |
run: exit 0 | |
- name: Some matrix version failed | |
if: ${{ contains(needs.*.result, 'failure') }} | |
run: exit 1 |