From c8ae8cf28d471cbb8516c9d93ebe49b83fd5345d Mon Sep 17 00:00:00 2001 From: Vault Sovereign Date: Fri, 26 Dec 2025 23:06:49 +0000 Subject: [PATCH] Add CI lockfile hygiene gate --- .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..e487f14 --- /dev/null +++ b/.github/workflows/ci.yml @@ -0,0 +1,20 @@ +name: vm-cloud CI + +on: + push: + pull_request: + +jobs: + node: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v4 + - uses: actions/setup-node@v4 + with: + node-version: 20 + cache: npm + cache-dependency-path: package-lock.json + - run: npm ci + - run: npm run build --if-present + - run: npm test --if-present + - run: npm run lint --if-present