Skip to content

⬆️ Upgrade dependencies #239

⬆️ Upgrade dependencies

⬆️ Upgrade dependencies #239

Workflow file for this run

name: test
on:
push:
branches:
- main
paths-ignore:
- '*.md'
pull_request:
branches:
- main
paths-ignore:
- '*.md'
permissions:
contents: read
jobs:
test:
runs-on: ubuntu-latest
env:
CI: true
strategy:
fail-fast: true
matrix:
node-version:
- 20
experimental: [false]
include:
- node-version: lts/*
experimental: true
continue-on-error: ${{ matrix.experimental }}
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}-${{ matrix.node-version }}-${{ matrix.experimental }}
cancel-in-progress: true
steps:
- name: Checkout
uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11
- name: Setup Node.js v${{ matrix.node-version }}
uses: actions/setup-node@8f152de45cc393bb48ce5d89d36b731f54556e65
with:
node-version: ${{ matrix.node-version }}
cache: 'npm'
- name: NPM config
run: |
npm pkg delete scripts.prepare
npm install --ignore-scripts --pure-lockfile
- name: Build
run: npm run build --if-present
- name: Test
run: npm run test --if-present