feat(test-ui): better explorer transaction info page #174
This file contains hidden or 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: Check UI Dependencies | |
| on: | |
| workflow_call: | |
| pull_request: | |
| branches: | |
| - master | |
| paths: | |
| - ".github/workflows/check-ui-deps.yml" | |
| - "bun.lock" | |
| - "package.json" | |
| - "crates/acton-**-ui/**" | |
| push: | |
| branches: | |
| - master | |
| paths: | |
| - ".github/workflows/check-ui-deps.yml" | |
| - "bun.lock" | |
| - "package.json" | |
| - "crates/acton-**-ui/**" | |
| workflow_dispatch: | |
| concurrency: | |
| group: check-ui-deps-${{ github.ref }} | |
| cancel-in-progress: true | |
| permissions: { } | |
| jobs: | |
| bun-audit: | |
| name: Bun audit | |
| runs-on: ubicloud-standard-2-ubuntu-2204 | |
| permissions: | |
| contents: read | |
| steps: | |
| - name: Fetch Sources | |
| uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 | |
| with: | |
| persist-credentials: false | |
| - name: Installing additional Rust components | |
| uses: taiki-e/install-action@184183c2401be73c3bf42c2e61268aa5855379c1 # v2.78.1 | |
| with: | |
| tool: just@1.49.0 | |
| fallback: none | |
| - name: Setup Bun | |
| uses: oven-sh/setup-bun@0c5077e51419868618aeaa5fe8019c62421857d6 # v2.2.0 | |
| - name: Run Bun audit | |
| run: just check-ui-security |