Skip to content

build(deps-dev): bump @types/node from 22.9.0 to 22.10.1 #106

build(deps-dev): bump @types/node from 22.9.0 to 22.10.1

build(deps-dev): bump @types/node from 22.9.0 to 22.10.1 #106

Workflow file for this run

name: Node.js CI
on:
pull_request:
push:
branches:
- main
jobs:
build-api:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [20]
steps:
- uses: actions/checkout@v4
- name: Set up Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
cache: 'npm'
- name: Install dependencies
run: npm install --prefix api
- name: Build API
run: npm run build --prefix api
build-linux:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [20]
steps:
- uses: actions/checkout@v4
- name: Set up Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
cache: 'npm'
- name: Install dependencies
run: npm install
- name: Check formatting
run: npm run ci
- name: Run tests
run: npm test
- name: Build
run: npm run build