From 6d8ad12e90bbe2b8fb4b9b652a06f0150bd4decd Mon Sep 17 00:00:00 2001 From: Nadeem Patwekar Date: Mon, 3 Nov 2025 12:16:36 +0530 Subject: [PATCH] feat: update CI workflow to include node setup and npm install steps --- .github/workflows/ci.yml | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 810dbe5..a9d00be 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -9,8 +9,15 @@ on: jobs: build-test: runs-on: ubuntu-latest + permissions: + contents: read + pull-requests: write steps: - uses: actions/checkout@v3 + - uses: actions/setup-node@v4 + with: + node-version: '22.x' + - run: npm ci - uses: ArtiomTr/jest-coverage-report-action@v2 id: coverage-utils-js with: