From 92bcbdcddfb53a40592aae8f363af180820e0f5b Mon Sep 17 00:00:00 2001 From: Peber Date: Fri, 25 Jul 2025 20:46:23 -0400 Subject: [PATCH] adding CI action --- .github/workflows/ci.yml | 25 +++++++++++++++++++++++++ 1 file changed, 25 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..da2cd23 --- /dev/null +++ b/.github/workflows/ci.yml @@ -0,0 +1,25 @@ +name: CI Test Build + +on: + pull_request: + branches: + - main + +jobs: + build: + runs-on: ubuntu-latest + + steps: + - name: Checkout code + uses: actions/checkout@v4.2.2 + + - name: Set up Node.js + uses: actions/setup-node@v4.4.0 + with: + node-version: 'latest' + + - name: Install dependencies + run: npm install + + - name: Run test build + run: npm run build \ No newline at end of file