Skip to content
Merged
Show file tree
Hide file tree
Changes from 5 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
4 changes: 2 additions & 2 deletions .github/workflows/check-dist.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,10 +23,10 @@ jobs:
steps:
- uses: actions/checkout@v6

- name: Set Node.js 16.x
- name: Set Node.js 20.x
uses: actions/setup-node@v6.1.0
with:
node-version: 16.x
node-version: 20.x

- name: Install dependencies
run: npm ci
Expand Down
7 changes: 7 additions & 0 deletions __tests__/main.test.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
describe('main', () => {
it('placeholder test', () => {
// This is a placeholder test to prevent Jest from failing
// TODO: Add proper unit tests for the main module
expect(true).toBe(true)
})
})
2 changes: 1 addition & 1 deletion action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,5 +18,5 @@ inputs:
required: false
description: 'The output SARIF file path, defaults to the input SARIF file path'
runs:
using: 'node16'
using: 'node20'
main: 'dist/index.js'
Loading