ci: add build & lint workflow
Build & Lint / build (push) Failing after 1m54s

This commit is contained in:
nh9961
2026-07-04 23:36:03 +00:00
parent 9ab88d71d0
commit 916287c72a
+15
View File
@@ -0,0 +1,15 @@
name: Build & Lint
on: [push]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: 20
- run: npm ci
- run: npm run lint
- run: npm run build