Skip to content

npm version --git-tag-version=false #7

npm version --git-tag-version=false

npm version --git-tag-version=false #7

Workflow file for this run

name: test
on:
push:
branches: [ main ]
pull_request:
branches: [ master, main ]
jobs:
build:
runs-on: ubuntu-latest
strategy:
fail-fast: true
matrix:
node: [20, 21, 22]
name: Run tests on Node v${{ matrix.node }}
steps:
- name: checkout
uses: actions/checkout@v4
- name: setup node
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node }}
- name: install
run: npm ci
- name: build
run: npm run build
- name: test
run: npm run test