build(deps): bump node from 87524df
to 9696b26
in /build
#8671
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Fuzzing | |
on: [push, pull_request] | |
permissions: | |
contents: read | |
jobs: | |
fuzzing: | |
name: Fuzz | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@9bb56186c3b09b4f86b1c65136769dd318469633 # v4.1.2 | |
with: | |
persist-credentials: false | |
- name: Setup Node | |
uses: actions/setup-node@60edb5dd545a775178f52524783378180af0d1f8 # v4.0.2 | |
with: | |
node-version: lts/* | |
- name: Install | |
run: | | |
npm install | |
- name: Run fuzzing | |
timeout-minutes: 10 | |
run: | | |
npm run fuzz | |
- uses: actions/upload-artifact@5d5d22a31266ced268874388b861e4b58bb5c2f3 # v4.3.1 | |
if: ${{ failure() }} | |
with: | |
name: undici-fuzz-results-${{ github.sha }} | |
path: | | |
corpus/ | |
crash-* | |
fuzz-results-*.json |