Skip to content

[ci] Bump @typescript-eslint/parser in /debezium-platform-stage #558

[ci] Bump @typescript-eslint/parser in /debezium-platform-stage

[ci] Bump @typescript-eslint/parser in /debezium-platform-stage #558

name: Test Debezium platform (stage)
on:
push:
paths:
- "debezium-platform-stage/**"
- ".github/**"
branches:
- main
pull_request:
paths:
- "debezium-platform-stage/**"
- ".github/**"
branches:
- main
jobs:
# Checks that all commits contain sign-offs
check-signed-commits:
name: Check signed commits
if: github.event_name == 'pull_request'
runs-on: ubuntu-latest
steps:
- uses: debezium/dbz/.github/actions/check-dco@main
type-check:
name: "TypeScript Type and Lint Check"
needs: [ check-signed-commits ]
runs-on: ubuntu-latest
defaults:
run:
working-directory: debezium-platform-stage
strategy:
matrix:
node-version: [25.x]
steps:
- name: Checkout repository
uses: actions/checkout@v6
- name: Setup Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v6
with:
node-version: ${{ matrix.node-version }}
- name: Cache Yarn dependencies
uses: actions/cache@v5
with:
path: |
~/.yarn/cache
debezium-platform-stage/node_modules
key: ${{ runner.os }}-node-${{ matrix.node-version }}-yarn-${{ hashFiles('debezium-platform-stage/yarn.lock') }}
restore-keys: |
${{ runner.os }}-node-${{ matrix.node-version }}-yarn-
- name: Install dependencies
run: yarn install --frozen-lockfile
- name: Run lint check
run: yarn lint
- name: Run TS Type Check
run: yarn type-check
tests:
name: "Build the project & Run tests"
runs-on: ubuntu-latest
defaults:
run:
working-directory: debezium-platform-stage
strategy:
matrix:
node-version: [22.x]
steps:
- name: Checkout repository
uses: actions/checkout@v6
- name: Setup Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v6
with:
node-version: ${{ matrix.node-version }}
- name: Cache Yarn dependencies
uses: actions/cache@v5
with:
path: |
~/.yarn/cache
debezium-platform-stage/node_modules
key: ${{ runner.os }}-node-${{ matrix.node-version }}-yarn-${{ hashFiles('debezium-platform-stage/yarn.lock') }}
restore-keys: |
${{ runner.os }}-node-${{ matrix.node-version }}-yarn-
- name: Install dependencies
run: yarn install --frozen-lockfile
- name: Build UI
run: yarn build
- name: Run tests
run: yarn test