Skip to content

Bump node-continuous-profiling to version v1.1.12 #19

Bump node-continuous-profiling to version v1.1.12

Bump node-continuous-profiling to version v1.1.12 #19

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