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
7 changes: 7 additions & 0 deletions .github/workflows/node.js.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,13 @@ jobs:
- name: Set config file
run: cp config.example.ts config.ts

- name: Check for binding.gyp
run: |
if [ ! -f binding.gyp ]; then
echo "Error: binding.gyp not found. Exiting."
exit 1
fi

- name: build
run: |
npm run build 2>&1 | tee build-output.log
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/test-suite.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ jobs:
steps:
- uses: actions/checkout@v4
- name: Set up CodeQL
uses: github/codeql-action/init@v2
uses: github/codeql-action/init@v3
with:
languages: typescript

Expand All @@ -20,7 +20,7 @@ jobs:
npm run build || true

- name: Perform CodeQL Analysis
uses: github/codeql-action/analyze@v2
uses: github/codeql-action/analyze@v3

touca-test:
runs-on: ubuntu-latest
Expand Down
Loading