Skip to content

build(deps-dev): bump @types/node from 20.4.4 to 20.7.0 #406

build(deps-dev): bump @types/node from 20.4.4 to 20.7.0

build(deps-dev): bump @types/node from 20.4.4 to 20.7.0 #406

Workflow file for this run

name: CI
on:
pull_request:
types: ['opened', 'reopened', 'synchronize']
jobs:
build:
runs-on: ${{ matrix.os }}
strategy:
matrix:
node: [ '16', '18', '20' ]
os: [ ubuntu-latest, windows-latest ]
name: ${{ matrix.os }} / Node ${{ matrix.node }}
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node }}
- name: install
run: |
npm install -g npm@latest
npm ci
- name: lint
run: npm run lint
- name: build
run: npm run build
- name: test
run: npm test