Bump vue-tsc from 1.8.27 to 2.0.19 in /frontend #2304
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: "backend:test:build test docs" | |
on: push | |
jobs: | |
# only (but most important) job from this workflow required for pull requests | |
# check results serve as run conditions for all other jobs here | |
files-changed: | |
name: Detect File Changes - backend-test-build-docs | |
runs-on: ubuntu-latest | |
outputs: | |
changes: ${{ steps.changes.outputs.backend-test-build-docs }} | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Check for backend file changes | |
uses: dorny/[email protected] | |
id: changes | |
with: | |
token: ${{ github.token }} | |
filters: .github/file-filters.yml | |
list-files: shell | |
build: | |
if: needs.files-changed.outputs.changes == 'true' | |
name: Build Docs - Backend | |
needs: files-changed | |
runs-on: ubuntu-latest | |
env: | |
WORKING_DIRECTORY: ./backend | |
steps: | |
- name: Set Node version | |
uses: actions/setup-node@v4 | |
with: | |
node-version: '>=21' | |
- name: Checkout code | |
uses: actions/checkout@v4 | |
- name: Backend | Build Docs | |
run: npm install && npm run docs:build | |
working-directory: ${{env.WORKING_DIRECTORY}} |