Skip to content

Merge pull request #11432 from growilabs/imprv/187026-display-officia… #21773

Merge pull request #11432 from growilabs/imprv/187026-display-officia…

Merge pull request #11432 from growilabs/imprv/187026-display-officia… #21773

Workflow file for this run

name: Node CI for app production
on:
push:
branches:
- master
- dev/7.*.x
- dev/8.*.x
paths:
- .github/mergify.yml
- .github/workflows/ci-app-prod.yml
- .github/workflows/reusable-app-prod.yml
- tsconfig.base.json
- turbo.json
- pnpm-lock.yaml
- package.json
- apps/app/**
- '!apps/app/docker/**'
- packages/**
pull_request:
types: [opened, reopened, synchronize]
paths:
- .github/mergify.yml
- .github/workflows/ci-app-prod.yml
- .github/workflows/reusable-app-prod.yml
- tsconfig.base.json
- pnpm-lock.yaml
- turbo.json
- package.json
- apps/app/**
- '!apps/app/docker/**'
- packages/**
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
test-prod-node24:
uses: ./.github/workflows/reusable-app-prod.yml
if: |
( github.event_name == 'push'
|| github.base_ref == 'master'
|| github.base_ref == 'dev/7.*.x'
|| github.base_ref == 'dev/8.*.x'
|| startsWith( github.base_ref, 'release/' )
|| startsWith( github.head_ref, 'mergify/merge-queue/' ))
with:
node-version: 24.x
skip-e2e-test: ${{ contains( github.event.pull_request.labels.*.name, 'dependencies' ) }}
secrets:
SLACK_WEBHOOK_URL: ${{ secrets.SLACK_WEBHOOK_URL }}