Bump esbuild from 0.25.4 to 0.25.6 #32
Workflow file for this run
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: Build install ISPC action | |
| permissions: read-all | |
| on: | |
| workflow_dispatch: | |
| inputs: | |
| repo: | |
| description: 'Repository to checkout (owner/repo)' | |
| required: true | |
| default: 'ispc/install-ispc-action' | |
| branch: | |
| description: 'Branch to checkout' | |
| required: true | |
| default: 'main' | |
| pull_request: | |
| jobs: | |
| build: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Harden Runner | |
| uses: step-security/harden-runner@17d0e2bd7d51742c71671bd19fa12bdc9d40a3d6 # v2.8.1 | |
| with: | |
| egress-policy: audit | |
| - name: Checkout repository | |
| uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7 | |
| - name: Build action | |
| run: | | |
| npm install | |
| npm run lint | |
| npm run build | |
| git diff --exit-code |