Skip to content

chore: update DS to 2.0.0-beta.4 #2091

chore: update DS to 2.0.0-beta.4

chore: update DS to 2.0.0-beta.4 #2091

Workflow file for this run

name: 'Tests'
on:
pull_request:
paths:
- 'docs/**'
- '**.mdx?'
concurrency:
group: ${{ github.workflow }}-${{ github.ref_name }}
cancel-in-progress: true
jobs:
changes:
runs-on: ubuntu-latest
permissions:
pull-requests: read
outputs:
nonDoc: ${{ steps.filter.outputs.nonDoc }}
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
# For pull requests it's not necessary to checkout the code
- uses: dorny/paths-filter@v3
id: filter
with:
filters: .github/filters.yaml
lint:
name: 'lint (node: ${{ matrix.node }})'
runs-on: ubuntu-latest
strategy:
matrix:
node: [20]
steps:
- run: echo "Skipped"
unit_back:
name: 'unit_back (node: ${{ matrix.node }})'
needs: [lint]
runs-on: ubuntu-latest
strategy:
matrix:
node: [18, 20]
steps:
- run: echo "Skipped"
unit_front:
name: 'unit_front (node: ${{ matrix.node }})'
needs: [lint]
runs-on: ubuntu-latest
strategy:
matrix:
node: [20]
steps:
- run: echo "Skipped"
build:
name: 'build (node: ${{ matrix.node }})'
needs: [changes, lint, unit_front]
runs-on: ubuntu-latest
strategy:
matrix:
node: [18, 20]
steps:
- run: echo "Skipped"
cli:
name: 'CLI Tests'
needs: [changes, build, typescript]

Check failure on line 71 in .github/workflows/skipped_tests.yml

View workflow run for this annotation

GitHub Actions / Tests

Invalid workflow file

The workflow is not valid. .github/workflows/skipped_tests.yml (Line: 71, Col: 29): Job 'cli' depends on unknown job 'typescript'.
runs-on: ubuntu-latest
steps:
- run: echo "Skipped"
api_ce_pg:
runs-on: ubuntu-latest
needs: [lint, unit_back, unit_front]
name: '[CE] API Integration (postgres, node: ${{ matrix.node }})'
strategy:
matrix:
node: [18, 20]
steps:
- run: echo "Skipped"
api_ce_mysql:
runs-on: ubuntu-latest
needs: [lint, unit_back, unit_front]
name: '[CE] API Integration (mysql, node: ${{ matrix.node }})'
strategy:
matrix:
node: [18, 20]
steps:
- run: echo "Skipped"
api_ce_sqlite:
runs-on: ubuntu-latest
needs: [lint, unit_back, unit_front]
name: '[CE] API Integration (sqlite: ${{ matrix.sqlite_pkg }}, node: ${{ matrix.node }})'
steps:
- run: echo "Skipped"