Skip to content

build(deps-dev): bump the alldependencies group across 1 directory with 5 updates #48

build(deps-dev): bump the alldependencies group across 1 directory with 5 updates

build(deps-dev): bump the alldependencies group across 1 directory with 5 updates #48

Workflow file for this run

name: NodeJS version variation testing
on:
push:
branches:
- 'master'
pull_request:
branches:
- 'master'
workflow_dispatch:
jobs:
matrix-test:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [20, 22, 24]
container: node:${{ matrix.node-version }}
steps:
- name: checkout repository
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: nodejs version
run: |
node -v
- name: install pnpm
run: |
npm install -g pnpm
- name: install dependencies
run: |
pnpm install
- name: testing
run: |
pnpm dev:test
pnpm dev:format
pnpm dev:lint
pnpm build
echo "All tests passed!"