chore(deps): update dependency @rollup/plugin-node-resolve to v15.2.4 #11274
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: 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@0a44ba7841725637a19e28fa30b79a866c81b0a6 # v4.0.4 | |
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@0a44ba7841725637a19e28fa30b79a866c81b0a6 # v4.0.4 | |
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-semantic-release-22.yml@master | |
secrets: | |
NPM_TOKEN: ${{ secrets.NPM_PUBLISH_TOKEN }} | |
permissions: | |
contents: read |