Skip to content

feat: initial commit #1

feat: initial commit

feat: initial commit #1

Workflow file for this run

name: build
on:
push:
branches: ["*"]
pull_request:
branches: [main]
workflow_dispatch:
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Setup node 20
uses: actions/setup-node@v4
with:
cache: 'npm'
node-version: 20.15.0
- name: npm ci
run: npm ci
- name: npm run build
run: npm run build