chore(deps-dev): bump esbuild from 0.17.18 to 0.25.0 in /lib #1033
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: CI | |
| on: [push, pull_request] | |
| permissions: | |
| contents: read | |
| jobs: | |
| build: | |
| name: Build & Test | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout code | |
| uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2 | |
| with: | |
| persist-credentials: false | |
| - name: Setup environment | |
| uses: ./.github/actions/environment | |
| - name: Create .env file | |
| uses: SpicyPizza/create-envfile@ace6d4f5d7802b600276c23ca417e669f1a06f6f # v2.0 | |
| with: | |
| envkey_BUILD: production | |
| envkey_DEBUG: false | |
| envkey_WATCH: false | |
| file_name: .env | |
| - name: Install dependencies | |
| uses: ./.github/actions/dependencies | |
| - name: Build Dist | |
| run: pnpm run build | |
| - name: Run Tests | |
| run: pnpm --filter=@hcaptcha-react/lib run test:unit |