Skip to content
Merged
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
8 changes: 4 additions & 4 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
name: Node.js CI

Check warning on line 1 in .github/workflows/build.yml

View workflow job for this annotation

GitHub Actions / zizmor-output

excessive-permissions

build.yml:1: overly broad permissions: default permissions used due to no permissions: block

on: [push, pull_request]

jobs:
build:

Check warning on line 6 in .github/workflows/build.yml

View workflow job for this annotation

GitHub Actions / zizmor-output

excessive-permissions

build.yml:6: overly broad permissions: default permissions used due to no permissions: block
runs-on: ubuntu-latest
defaults:
run:
Expand All @@ -30,10 +30,10 @@
]

steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v6

Check failure on line 33 in .github/workflows/build.yml

View workflow job for this annotation

GitHub Actions / zizmor-output

zizmor/unpinned-uses

unpinned action reference: action is not pinned to a hash (required by blanket policy)

Check failure on line 33 in .github/workflows/build.yml

View workflow job for this annotation

GitHub Actions / zizmor-output

unpinned-uses

build.yml:33: unpinned action reference: action is not pinned to a hash (required by blanket policy)

- name: Use Node.js ${{ matrix.test-case.node }}
uses: actions/setup-node@v3
uses: actions/setup-node@v6

Check failure on line 36 in .github/workflows/build.yml

View workflow job for this annotation

GitHub Actions / zizmor-output

zizmor/unpinned-uses

unpinned action reference: action is not pinned to a hash (required by blanket policy)

Check failure on line 36 in .github/workflows/build.yml

View workflow job for this annotation

GitHub Actions / zizmor-output

unpinned-uses

build.yml:36: unpinned action reference: action is not pinned to a hash (required by blanket policy)
with:
node-version: ${{ matrix.test-case.node }}
cache: 'npm'
Expand Down Expand Up @@ -65,12 +65,12 @@
- run: npm run build
- run: npm run test

lint:

Check warning on line 68 in .github/workflows/build.yml

View workflow job for this annotation

GitHub Actions / zizmor-output

excessive-permissions

build.yml:68: overly broad permissions: default permissions used due to no permissions: block
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v6

Check failure on line 71 in .github/workflows/build.yml

View workflow job for this annotation

GitHub Actions / zizmor-output

zizmor/unpinned-uses

unpinned action reference: action is not pinned to a hash (required by blanket policy)

Check failure on line 71 in .github/workflows/build.yml

View workflow job for this annotation

GitHub Actions / zizmor-output

unpinned-uses

build.yml:71: unpinned action reference: action is not pinned to a hash (required by blanket policy)
- name: Use Node.js 26.x
uses: actions/setup-node@v3
uses: actions/setup-node@v6

Check failure on line 73 in .github/workflows/build.yml

View workflow job for this annotation

GitHub Actions / zizmor-output

zizmor/unpinned-uses

unpinned action reference: action is not pinned to a hash (required by blanket policy)

Check failure on line 73 in .github/workflows/build.yml

View workflow job for this annotation

GitHub Actions / zizmor-output

unpinned-uses

build.yml:73: unpinned action reference: action is not pinned to a hash (required by blanket policy)
with:
node-version: 26.x
cache: 'npm'
Expand Down
Loading