Skip to content

Add Catalyst Compatible LLVM Version #64

Add Catalyst Compatible LLVM Version

Add Catalyst Compatible LLVM Version #64

Workflow file for this run

name: Check action distribution
on:
push:
branches:
- main
pull_request:
merge_group:
workflow_dispatch:
concurrency:
group: ${{ github.workflow }}-${{ github.head_ref || github.run_id }}
cancel-in-progress: true
permissions:
contents: read
jobs:
check-dist:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v6.0.1
- uses: actions/setup-node@395ad3262231945c25e8478fd5baf05154b1d79f # v6.1.0
with:
node-version: 24
cache: npm
- run: npm ci
- run: npm run build
- name: Compare the expected and actual dist/ directories (using git diff)
run: |
if [ "$(git diff --ignore-space-at-eol dist/ | wc -l)" -gt "0" ]; then
echo "Detected uncommitted changes after build. See status below:"
git diff --ignore-space-at-eol --text
exit 1
fi
id: diff
continue-on-error: true
- uses: actions/upload-artifact@330a01c490aca151604b8cf639adc76d48f6c5d4 # v5.0.0
if: ${{ failure() && steps.diff.outcome == 'failure' }}
with:
name: dist
path: dist/
retention-days: 5