Skip to content

chore(deps): bump express from 4.18.2 to 4.19.2 #7

chore(deps): bump express from 4.18.2 to 4.19.2

chore(deps): bump express from 4.18.2 to 4.19.2 #7

Workflow file for this run

name: Node.js CI tests
on:
- push
- pull_request
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
node-version:
- 20.x
steps:
- name: Checkout
uses: actions/checkout@v4
- name: 'Use Node.js ${{ matrix.node-version }}'
uses: actions/setup-node@v4
with:
node-version: '${{ matrix.node-version }}'
- name: Install
run: npm ci
- name: Generate OpenAPI Docs
run: npm run build_openapi_schema
- name: Check TypeScript
run: 'npm run ts-check --workspace={frontend,backend}'
- name: Run Linter
run: 'npm run lint --workspace={frontend,backend}'
- name: Build Valetudo frontend
run: npm run build --workspace=frontend
- name: Build Valetudo backend
run: npm run build --workspace=backend
- name: run tests
run: npm test --workspace=backend
env:
CI: true