Skip to content

build(deps-dev): bump @types/express-serve-static-core from 4.19.6 to 5.0.0 #39

build(deps-dev): bump @types/express-serve-static-core from 4.19.6 to 5.0.0

build(deps-dev): bump @types/express-serve-static-core from 4.19.6 to 5.0.0 #39

Workflow file for this run

name: CI Pipeline
# Trigger the workflow on push and pull request events to the main branch
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
build:
runs-on: ubuntu-latest # You can also use other runners like windows-latest or macos-latest
steps:
- name: Checkout code
uses: actions/checkout@v3
- name: Set up Node.js
uses: actions/setup-node@v3
with:
node-version: "22"
- name: Install dependencies
run: npm install
- name: Run linter
run: npm run lint:check
- name: Build the project
run: npm run build