Skip to content

Bump @types/node from 18.16.3 to 20.8.9 #152

Bump @types/node from 18.16.3 to 20.8.9

Bump @types/node from 18.16.3 to 20.8.9 #152

Workflow file for this run

name: Linting
on:
pull_request:
branches:
- "**"
push:
branches:
- master
- linting
jobs:
nodejs-test:
runs-on: ubuntu-latest
strategy:
matrix:
version: [18, 20]
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: ${{ matrix.version }}
cache: "npm"
- name: Install dependencies
run: npm ci
- name: Lint
run: npm run lint