Skip to content

chore(deps-dev): bump expect from 29.7.0 to 30.0.0 in the major-deps-updates-main group #149

chore(deps-dev): bump expect from 29.7.0 to 30.0.0 in the major-deps-updates-main group

chore(deps-dev): bump expect from 29.7.0 to 30.0.0 in the major-deps-updates-main group #149

Workflow file for this run

name: CI
on:
push:
branches:
- main
- v[0-9]+
tags:
- v[0-9]+.[0-9]+.[0-9]+*
pull_request:
concurrency:
group: ci-${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
build:
name: Build
uses: ./.github/workflows/ci-build.yml
with:
os: 'ubuntu-latest'
lint:
name: Lint
needs: [build]
uses: ./.github/workflows/ci-lint.yml
typecheck:
name: Typecheck
needs: [build]
uses: ./.github/workflows/ci-typecheck.yml
unit:
name: Unit
needs: [build]
uses: ./.github/workflows/ci-unit.yml
e2e:
name: E2E
needs: [build]
uses: ./.github/workflows/ci-e2e.yml
compatibility:
name: Compatibility
needs: [build]
uses: ./.github/workflows/ci-e2e.yml
with:
compatibility-mode: 'yes'
smoke:
name: Smoke
needs: [build, e2e]
uses: ./.github/workflows/ci-smoke.yml