Skip to content

chore(deps-dev): bump @types/node from 22.16.2 to 22.16.3 #297

chore(deps-dev): bump @types/node from 22.16.2 to 22.16.3

chore(deps-dev): bump @types/node from 22.16.2 to 22.16.3 #297

Workflow file for this run

#
# Copyright (C) 2025 Red Hat, Inc.
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
#
# SPDX-License-Identifier: Apache-2.0
name: pr-check
on: [pull_request]
concurrency:
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.sha }}
cancel-in-progress: true
jobs:
lint-format:
name: linter, formatters
runs-on: ubuntu-24.04
timeout-minutes: 40
steps:
- uses: actions/checkout@v4
- uses: pnpm/action-setup@v4
name: Install pnpm
with:
version: 10
run_install: false
- uses: actions/setup-node@v4
with:
node-version: 22
cache: 'pnpm'
- name: Execute pnpm
run: pnpm install --frozen-lockfile
- name: Execute build to generate files
run: pnpm build
- name: Run linter
run: pnpm lint:check
- name: Run formatter
run: pnpm format:check
typecheck:
name: typecheck
runs-on: ubuntu-24.04
timeout-minutes: 40
steps:
- uses: actions/checkout@v4
- uses: pnpm/action-setup@v4
name: Install pnpm
with:
version: 10
run_install: false
- uses: actions/setup-node@v4
with:
node-version: 22
cache: 'pnpm'
- name: Execute pnpm
run: pnpm install
- name: Execute build to generate files
run: pnpm build
- name: Run typecheck
run: pnpm typecheck:backend
unit-tests:
name: unit tests / ${{ matrix.os }}
runs-on: ${{ matrix.os }}
timeout-minutes: 40
strategy:
fail-fast: false
matrix:
os: [windows-2022, ubuntu-24.04, macos-15]
steps:
- uses: actions/checkout@v4
- uses: pnpm/action-setup@v4
name: Install pnpm
with:
version: 10
run_install: false
- uses: actions/setup-node@v4
with:
node-version: 22
cache: 'pnpm'
- name: Execute pnpm
run: pnpm install
- name: Execute build to generate files
run: pnpm build
- name: Run unit tests
run: pnpm test