Skip to content

refactor: improve performance and coverage of @vscode-wdio/test #206

refactor: improve performance and coverage of @vscode-wdio/test

refactor: improve performance and coverage of @vscode-wdio/test #206

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: Static code analysis
uses: ./.github/workflows/ci-lint.yml
typecheck:
name: Typecheck
needs: [lint, build]
uses: ./.github/workflows/ci-typecheck.yml
unit:
name: Unit
needs: [lint, build]
uses: ./.github/workflows/ci-unit.yml
e2e:
name: E2E
needs: [lint, build]
uses: ./.github/workflows/ci-e2e.yml
compatibility:
name: Compatibility
needs: [lint, build]
uses: ./.github/workflows/ci-e2e.yml
with:
compatibility-mode: 'yes'
smoke-config:
name: Smoke - Update Config
needs: [lint, build, e2e]
uses: ./.github/workflows/ci-smoke.yml
with:
scenario: 'config'
smoke-timeout:
name: Smoke - Worker idle timeout
needs: [lint, build, e2e]
uses: ./.github/workflows/ci-smoke.yml
with:
scenario: 'timeout'
smoke-env:
name: Smoke - Load .env files
needs: [lint, build, e2e]
uses: ./.github/workflows/ci-smoke.yml
with:
scenario: 'env'