Skip to content

Merge branch 'dev' into IPK-205-Bookings-Page #236

Merge branch 'dev' into IPK-205-Bookings-Page

Merge branch 'dev' into IPK-205-Bookings-Page #236

Workflow file for this run

name: CI
on:
pull_request:
branches:
- "*"
push:
branches:
- "*"
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Set up Node.js
uses: actions/setup-node@v4
with:
node-version: 20
- name: Install dependencies
run: npm install
- name: Build project
run: npm run build
- name: Lint project
run: npm run lint