chore(deps): bump undici from 6.21.3 to 6.24.0 #592
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: | |
| workflow_call: | |
| push: | |
| branches: | |
| - main | |
| pull_request: | |
| branches: | |
| - main | |
| merge_group: | |
| types: | |
| - checks_requested | |
| jobs: | |
| lint: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v4 | |
| - name: Setup | |
| uses: ./.github/actions/setup | |
| - name: Verify dependencies | |
| run: yarn install --immutable | |
| - name: Lint files | |
| run: yarn lint | |
| - name: Typecheck files | |
| run: yarn typecheck | |
| test: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v4 | |
| - name: Setup | |
| uses: ./.github/actions/setup | |
| - name: Verify dependencies | |
| run: yarn install --immutable | |
| - name: Run unit tests | |
| run: yarn test --maxWorkers=2 --coverage | |
| build-library: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v4 | |
| - name: Setup | |
| uses: ./.github/actions/setup | |
| - name: Verify dependencies | |
| run: yarn install --immutable | |
| - name: Build package | |
| run: yarn prepare | |
| ci-android: | |
| uses: ./.github/workflows/ci-android.yml | |
| needs: [lint, test, build-library] | |
| ci-ios: | |
| uses: ./.github/workflows/ci-ios.yml | |
| needs: [lint, test, build-library] | |
| ci-web: | |
| uses: ./.github/workflows/ci-web.yml | |
| needs: [lint, test, build-library] |