chore(deps): lock file maintenance #10473
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: Node.js CI | |
'on': | |
push: | |
branches: | |
- master | |
- beta | |
- renovate/** | |
pull_request: | |
types: | |
- opened | |
- synchronize | |
env: | |
FORCE_COLOR: 1 | |
NPM_CONFIG_COLOR: always | |
jobs: | |
verify-matrix: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
node: | |
- 18.17.0 | |
- 20.6.1 | |
steps: | |
- uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7 | |
- run: corepack enable npm | |
- name: Setup node | |
uses: actions/setup-node@60edb5dd545a775178f52524783378180af0d1f8 # v4.0.2 | |
with: | |
cache: npm | |
node-version: ${{ matrix.node }} | |
- run: npm clean-install | |
- run: npm test | |
verify: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7 | |
- run: corepack enable npm | |
- uses: actions/setup-node@60edb5dd545a775178f52524783378180af0d1f8 # v4.0.2 | |
with: | |
node-version-file: .nvmrc | |
cache: npm | |
- run: npm clean-install | |
- run: npm test | |
- uses: codecov/codecov-action@e28ff129e5465c2c0dcc6f003fc735cb6ae0c673 # v4.5.0 | |
release: | |
needs: | |
- verify | |
- verify-matrix | |
permissions: | |
contents: write | |
id-token: write | |
issues: write | |
pull-requests: write | |
uses: form8ion/.github/.github/workflows/release-package.yml@master | |
secrets: | |
NPM_TOKEN: ${{ secrets.NPM_PUBLISH_TOKEN }} | |
permissions: | |
contents: read |