Skip to content

chore(deps): bump undici from 6.21.3 to 6.24.0 #592

chore(deps): bump undici from 6.21.3 to 6.24.0

chore(deps): bump undici from 6.21.3 to 6.24.0 #592

Workflow file for this run

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]