chore(deps): bump express from 4.18.2 to 4.19.2 #7
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |