Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Run IDL analyses on curated branch, enable noEvent #787

Merged
merged 1 commit into from
Sep 11, 2024
Merged
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
18 changes: 16 additions & 2 deletions .github/workflows/file-issue-for-review.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ jobs:
git config user.email "<>"
git remote set-url --push origin https://x-access-token:${{ secrets.ISSUE_REPORT_GH_TOKEN }}@github.com/$GITHUB_REPOSITORY
working-directory: strudy
- name: Run Strudy to detect new anomalies
- name: Analyze the raw crawl results
working-directory: strudy
run: |
node strudy.js inspect ../webref \
Expand All @@ -37,10 +37,24 @@ jobs:
--cc ${{ vars.CC }} \
--what brokenLinks \
--what discontinuedReferences \
--what missingTask
- name: Switch to the curated branch
working-directory: webref
# Note: final "--" makes it clear that we're talking about the branch
# and not the folder. The "curated" folder should not exist in a job
# context, but better err on the safe side!
run: git checkout curated --
- name: Analyze the curated crawl results
working-directory: strudy
run: |
node strudy.js inspect ../webref \
--issues issues \
--update-mode untracked \
--cc ${{ vars.CC }} \
--what incompatiblePartialIdlExposure \
--what unexpectedEventHandler \
--what wrongCaseEnumValue \
--what missingTask
--what noEvent
- name: Run issue filer script
working-directory: strudy
run: node src/reporting/file-issue-for-review.js --max 10
Expand Down