19 lines
339 B
YAML
19 lines
339 B
YAML
name: ESTree
|
|
on:
|
|
pull_request:
|
|
push:
|
|
branches: [ master ]
|
|
jobs:
|
|
test:
|
|
name: fuzzing
|
|
runs-on: ubuntu-latest
|
|
env:
|
|
NODE: latest
|
|
steps:
|
|
- uses: actions/checkout@v4
|
|
- name: Perform tests
|
|
shell: bash
|
|
run: |
|
|
. ./test/release/install.sh
|
|
node test/mozilla-ast.js 5000
|