mirror of
https://github.com/twentyhq/twenty.git
synced 2024-12-24 04:23:57 +03:00
b914182b78
This Pull Request addresses the need to optimize our Continuous Integration (CI) workflows for Playwright tests and release processes. The changes implemented aim to reduce unnecessary resource usage by conditionally executing jobs based on relevant file changes and Implement https://github.com/tj-actions/changed-files step ## Changes logs - Updated `ci-test-docker-compose.yaml , ci-chrome-extension.yaml ` to check for changed files before running tests. - Updated `ci-front.yaml , ci-utils.yaml , ci-website.yaml , ci-server.yaml` to check for changed files before running tests. - Enhanced `playwright.yml` to skip unnecessary tests based on file changes.
58 lines
1.9 KiB
YAML
58 lines
1.9 KiB
YAML
name: CI Utils
|
|
on:
|
|
# it's usually not recommended to use pull_request_target
|
|
# but we consider it's safe here if we keep the same steps
|
|
# see: https://securitylab.github.com/research/github-actions-preventing-pwn-requests/
|
|
# and: https://github.com/facebook/react-native/pull/34370/files
|
|
pull_request_target:
|
|
types: [opened, synchronize, reopened, closed]
|
|
permissions:
|
|
actions: write
|
|
checks: write
|
|
contents: write
|
|
issues: write
|
|
pull-requests: write
|
|
statuses: write
|
|
concurrency:
|
|
group: ${{ github.workflow }}-${{ github.ref }}
|
|
cancel-in-progress: true
|
|
|
|
jobs:
|
|
danger-js:
|
|
runs-on: ubuntu-latest
|
|
if: github.event.action != 'closed'
|
|
steps:
|
|
- uses: actions/checkout@v4
|
|
- name: Check for changed files
|
|
id: changed-files
|
|
uses: tj-actions/changed-files@v11
|
|
with:
|
|
files: 'packages/twenty-utils/**'
|
|
- name: Install dependencies
|
|
if: steps.changed-files.outputs.changed == 'true'
|
|
uses: ./.github/workflows/actions/yarn-install
|
|
- name: Utils / Run Danger.js
|
|
if: steps.changed-files.outputs.changed == 'true'
|
|
run: cd packages/twenty-utils && npx nx danger:ci
|
|
env:
|
|
DANGER_GITHUB_API_TOKEN: ${{ github.token }}
|
|
|
|
congratulate:
|
|
runs-on: ubuntu-latest
|
|
if: github.event.action == 'closed' && github.event.pull_request.merged == true
|
|
steps:
|
|
- uses: actions/checkout@v4
|
|
- name: Check for changed files
|
|
id: changed-files
|
|
uses: tj-actions/changed-files@v11
|
|
with:
|
|
files: 'packages/twenty-utils/**'
|
|
- name: Install dependencies
|
|
if: steps.changed-files.outputs.changed == 'true'
|
|
uses: ./.github/workflows/actions/yarn-install
|
|
- name: Run congratulate-dangerfile.js
|
|
if: steps.changed-files.outputs.changed == 'true'
|
|
run: cd packages/twenty-utils && npx nx danger:congratulate
|
|
env:
|
|
DANGER_GITHUB_API_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|