Skip to content

Bump @types/node from 20.10.5 to 20.11.5 #1163

Bump @types/node from 20.10.5 to 20.11.5

Bump @types/node from 20.10.5 to 20.11.5 #1163

Workflow file for this run

name: Compile
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
build:
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
os: [ubuntu-latest, windows-latest, macOS-latest]
node-version: [18, 20]
steps:
- uses: actions/checkout@v4
with:
submodules: true
- name: Setup node ${{ matrix.node-version }}
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
- name: npm ci and compile
run: |
npm ci
npm run compile
cd client
npm run lint
npm test
env:
CI: true