From a20672a04554a2605efb99e816d64dd8904f9374 Mon Sep 17 00:00:00 2001 From: aliksir <62920013+aliksir@users.noreply.github.com> Date: Sun, 22 Mar 2026 19:48:31 +0900 Subject: [PATCH] ci: add GitHub Actions CI workflow intent(ci): automated quality checks on push/PR decision(scope): syntax check + tests (where available) Co-Authored-By: Claude Opus 4.6 (1M context) --- .github/workflows/ci.yml | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 .github/workflows/ci.yml diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml new file mode 100644 index 0000000..c89237d --- /dev/null +++ b/.github/workflows/ci.yml @@ -0,0 +1,18 @@ +name: CI + +on: + push: + branches: [main, master] + pull_request: + branches: [main, master] + +jobs: + lint: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v4 + - uses: actions/setup-node@v4 + with: + node-version: '20' + - name: Syntax check + run: node --check *.mjs