This repository has been archived by the owner on Aug 9, 2024. It is now read-only.
chore(deps): update dependency chai-as-promised to v8 (master) #4149
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: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7 | |
- name: Setup node | |
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 | |
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 |