Skip to content

Add description in package.json + full repo url #104

Add description in package.json + full repo url

Add description in package.json + full repo url #104

Workflow file for this run

name: test
on:
push:
branches:
- "main"
- "master"
pull_request:
defaults:
run:
shell: bash
jobs:
test:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
os: [ubuntu-latest]
node: [14, 16, 18, 20, 22, 24]
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 1
- uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node }}
- name: Upgrade npm for Node 14
if: matrix.node == 14
run: npm i -g npm@8
- name: npm ci
run: npm ci --ignore-scripts
- name: test
run: |
case "${{ matrix.node }}" in "20"|"22"|"24")
npm test
;;*)
npm run test:node-lt-20
;;
esac