Skip to content

Improve project documentation and tech stack overview #8

Improve project documentation and tech stack overview

Improve project documentation and tech stack overview #8

Workflow file for this run

name: CI Build Pipeline
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: ⬇️ Checkout Repository
uses: actions/checkout@v4
- name: ⎔ Setup Node.js
uses: actions/setup-node@v3
with:
node-version: 18
- name: 📦 Install Dependencies
run: npm ci --ignore-scripts=false
- name: 🔨 Build Project
run: npm run build