From 8b0c2f795aa838a2cdef2c00584eef700c707e28 Mon Sep 17 00:00:00 2001 From: Hermann_Kitio Date: Thu, 23 Apr 2026 02:35:51 +0300 Subject: [PATCH] =?UTF-8?q?ci:=20GitHub=20Actions=20workflow=20=E2=80=94?= =?UTF-8?q?=20test=20+=20audit=20(FTD-27)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Co-Authored-By: Claude Opus 4.7 (1M context) --- .github/workflows/ci.yml | 20 ++++++++++++++++++++ 1 file changed, 20 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..8c95e8d --- /dev/null +++ b/.github/workflows/ci.yml @@ -0,0 +1,20 @@ +name: CI + +on: + push: + branches: [main] + pull_request: + branches: [main] + +jobs: + quality: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v4 + - uses: actions/setup-node@v4 + with: + node-version: '22' + cache: 'npm' + - run: npm ci + - run: npm run test + - run: npm audit --audit-level=high