Skip to content

Commit dbd2cca

Browse files
authored
Merge pull request #194 from BePo65/pu/update-packages
chore: update packages
2 parents 236ea78 + 41821c1 commit dbd2cca

4 files changed

Lines changed: 1267 additions & 1317 deletions

File tree

.github/workflows/node.js.yml

Lines changed: 18 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -5,31 +5,34 @@ name: Node.js CI
55

66
on:
77
push:
8-
branches: [ "main" ]
8+
branches: ["main"]
99
pull_request:
10-
branches: [ "main" ]
10+
branches: ["main"]
1111
workflow_dispatch:
1212

1313
jobs:
1414
build:
1515
runs-on: ubuntu-24.04
1616

17+
permissions:
18+
contents: read
19+
1720
strategy:
1821
matrix:
1922
node-version: [20.x, 22.x, 24.x]
2023
# See supported Node.js release schedule at https://nodejs.org/en/about/releases/
2124

2225
steps:
23-
- name: Check out
24-
uses: actions/checkout@v6
25-
26-
- name: Use Node.js ${{ matrix.node-version }}
27-
uses: actions/setup-node@v6
28-
with:
29-
node-version: ${{ matrix.node-version }}
30-
cache: 'npm'
31-
32-
- run: npm ci
33-
- run: npm run lint
34-
- run: npm run build --if-present
35-
- run: npm run test
26+
- name: Check out
27+
uses: actions/checkout@v6
28+
29+
- name: Use Node.js ${{ matrix.node-version }}
30+
uses: actions/setup-node@v6
31+
with:
32+
node-version: ${{ matrix.node-version }}
33+
cache: "npm"
34+
35+
- run: npm ci
36+
- run: npm run lint
37+
- run: npm run build --if-present
38+
- run: npm run test

0 commit comments

Comments
 (0)