Skip to content
Open
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
11 changes: 10 additions & 1 deletion .github/workflows/tests.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -73,6 +73,7 @@ env:
permissions:
contents: read
packages: write
pull-requests: read

jobs:
lint:
Expand Down Expand Up @@ -107,7 +108,15 @@ jobs:
- name: Lint Yaml
run: yamllint -c yamllint.yml $(git ls-files "*.yml")
- name: Check async/await compliance in diff
run: yarn run check-diff-async
env:
GITHUB_TOKEN: ${{ github.token }}
BRANCH_NAME: ${{ github.ref_name }}
run: |
if gh pr list --head "$BRANCH_NAME" --state open --label "skip-async-migration" 2>/dev/null | grep -q .; then
echo "Skipping async/await check: 'skip-async-migration' label found"
else
yarn run check-diff-async
fi

async-migration-report:
runs-on: ubuntu-24.04
Expand Down
Loading