Skip to content

Updated for next event #22

Updated for next event

Updated for next event #22

Workflow file for this run

name: Deploy
on:
push:
branches:
- master
jobs:
build-and-run:
runs-on: self-hosted
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 Website
run: npm run build