Skip to content

Build

Build #36

Workflow file for this run

name: Build
on: [push]
jobs:
Build:
runs-on: ubuntu-latest
steps:
- name: Check out Git repository
uses: actions/checkout@v4
- name: Install Node.js
uses: actions/setup-node@v4
with:
node-version: 20
- name: Install Dependencies
run: npm install
- name: build
run: npm run build