Skip to content

Bump debug from 4.1.1 to 4.3.4 in /test/fixture/v6.0.x #208

Bump debug from 4.1.1 to 4.3.4 in /test/fixture/v6.0.x

Bump debug from 4.1.1 to 4.3.4 in /test/fixture/v6.0.x #208

Workflow file for this run

name: Build
on:
push:
branches:
- master
pull_request:
branches:
- master
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: ['12.x', '14.x', '16.x', '18.x', '20.x']
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
cache: 'npm'
- name: Install
run: npm ci
- name: Lint
run: npm run lint
- name: Test
run: npm test