Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 7 additions & 4 deletions .github/workflows/lint.js.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,13 +5,16 @@ name: Linting

on: [push, pull_request]

permissions:
contents: read

jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v1
- uses: actions/checkout@v6
- uses: actions/setup-node@v6
with:
node-version: 16
- run: npm i
node-version: 24
- run: npm ci
- run: npm run lint
11 changes: 7 additions & 4 deletions .github/workflows/node.js.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,10 @@ on:
branches: [ master ]
pull_request:
branches: [ master ]
types: [opened, synchronize, reopened]

permissions:
contents: read

jobs:
build:
Expand All @@ -16,13 +20,12 @@ jobs:

strategy:
matrix:
node-version: [22.x]
# See supported Node.js release schedule at https://nodejs.org/en/about/releases/
node-version: [22, 24]

steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v6
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v1
uses: actions/setup-node@v6
with:
node-version: ${{ matrix.node-version }}
- run: npm ci
Expand Down
1 change: 0 additions & 1 deletion lib/reader.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@

/**
* [Reader description]
* @param {[type]} buffer [description]
Expand Down
1 change: 0 additions & 1 deletion lib/writer.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@

/**
* [Writer description]
*/
Expand Down
Loading