Skip to content

add CI

add CI #1

Workflow file for this run

name: CI
on:
push:
branches:
- main
jobs:
reproduction:
name: Build, Start
runs-on: ubuntu-latest
steps:
- name: Checkout Repo
uses: actions/checkout@v4
- name: Setup Node.js 20.11.1
uses: actions/setup-node@v4
with:
node-version: 20.11.1
- name: Install dependencies
run: npm install
- name: Build
run: npm run build
- name: Start
run: npm run start