DOC: Creating step by step guide to update our forked repository with… #16
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: | |
workflow_dispatch: | |
push: | |
branches: | |
- 'master' | |
- 'release-**' | |
paths: | |
- 'frontend/src/metabase-lib/expressions/**' | |
pull_request: | |
paths: | |
- 'frontend/src/metabase-lib/expressions/**' | |
jobs: | |
fe-fuzz-tokenizer: | |
runs-on: ubuntu-22.04 | |
timeout-minutes: 15 | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Prepare front-end environment | |
uses: ./.github/actions/prepare-frontend | |
- name: Prepare back-end environment | |
uses: ./.github/actions/prepare-backend | |
with: | |
m2-cache-key: 'cljs' | |
- run: yarn test-unit frontend/test/metabase/lib/expressions/fuzz.tokenizer.unit.spec.js | |
env: | |
MB_FUZZ: 1 | |
name: Run fuzz testing on the tokenizer | |
fe-fuzz-recursive-parser: | |
runs-on: ubuntu-22.04 | |
timeout-minutes: 15 | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Prepare front-end environment | |
uses: ./.github/actions/prepare-frontend | |
- name: Prepare back-end environment | |
uses: ./.github/actions/prepare-backend | |
with: | |
m2-cache-key: 'cljs' | |
- run: yarn test-unit frontend/test/metabase/lib/expressions/fuzz.recursive-parser.unit.spec.js | |
env: | |
MB_FUZZ: 1 | |
name: Run fuzz testing on the recursive parser |