Skip to content

[🏭 infra] Update actions/setup-node action to v5 #8

[🏭 infra] Update actions/setup-node action to v5

[🏭 infra] Update actions/setup-node action to v5 #8

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@v5
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@v5
with:
node-version: ${{ matrix.version }}
- run: |
make test