Skip to content

Bump vite from 5.0.0 to 5.0.12 in /frontend #159

Bump vite from 5.0.0 to 5.0.12 in /frontend

Bump vite from 5.0.0 to 5.0.12 in /frontend #159

Workflow file for this run

# This workflow will do a clean install of node dependencies, build the source code and run tests across selected node versions
# For more information see: https://help.github.com/actions/language-and-framework-guides/using-nodejs-with-github-actions
name: CI/CD-pipeline
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [21.x]
steps:
- uses: actions/checkout@v4
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
- name: Build Frontend
run: npm install
working-directory: frontend
- name: Lint Frontend
run: npm run lint
working-directory: frontend
- name: Build Backend
run: npm install
working-directory: backend
- name: Lint Backend
run: npm run lint
working-directory: backend
- name: transpile backend
run: npm run transpile
working-directory: backend
- name: Build UI
run: npm run build
working-directory: backend