Bump node-continuous-profiling to version v1.1.12 #19
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: release staging | |
| on: | |
| push: | |
| branches: | |
| - master | |
| jobs: | |
| coding-style: | |
| name: Probe NodeJs - Code Style | |
| runs-on: ubuntu-latest | |
| timeout-minutes: 3 | |
| steps: | |
| - uses: actions/checkout@v5 | |
| - uses: actions/setup-node@v6 | |
| with: | |
| node-version: latest | |
| - run: | | |
| make eslint | |
| unit-tests: | |
| name: Probe Node.js ${{ matrix.version }} - Unit tests | |
| runs-on: ubuntu-latest | |
| needs: coding-style | |
| timeout-minutes: 3 | |
| strategy: | |
| fail-fast: false | |
| matrix: | |
| version: | |
| - 18 | |
| - 20 | |
| - 21 | |
| - 22 | |
| steps: | |
| - uses: actions/checkout@v5 | |
| - uses: actions/setup-node@v6 | |
| with: | |
| node-version: ${{ matrix.version }} | |
| - run: | | |
| make test |