Skip to content

Commit 6d8ad12

Browse files
committed
feat: update CI workflow to include node setup and npm install steps
1 parent a439de5 commit 6d8ad12

File tree

1 file changed

+7
-0
lines changed

1 file changed

+7
-0
lines changed

.github/workflows/ci.yml

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,8 +9,15 @@ on:
99
jobs:
1010
build-test:
1111
runs-on: ubuntu-latest
12+
permissions:
13+
contents: read
14+
pull-requests: write
1215
steps:
1316
- uses: actions/checkout@v3
17+
- uses: actions/setup-node@v4
18+
with:
19+
node-version: '22.x'
20+
- run: npm ci
1421
- uses: ArtiomTr/jest-coverage-report-action@v2
1522
id: coverage-utils-js
1623
with:

0 commit comments

Comments
 (0)