Skip to content

πŸ’„ Make modal bigger #37

πŸ’„ Make modal bigger

πŸ’„ Make modal bigger #37

Workflow file for this run

name: Simple Build Check
on:
push:
branches:
- master
jobs:
build:
runs-on: ubuntu-latest
steps:
# Checkout the repository
- name: Checkout code
uses: actions/checkout@v4
with:
fetch-depth: 0
# Setup Node.js environment
- name: Set up Node.js
uses: actions/setup-node@v4
with:
node-version: "22.8.0"
cache: "npm"
# Install dependencies
- name: Install dependencies
run: npm install
# Build the website
- name: Build project
run: npm run build