mirror of
https://github.com/directus/directus.git
synced 2026-04-25 03:00:53 -04:00
71 lines
1.6 KiB
YAML
71 lines
1.6 KiB
YAML
name: Check
|
|
|
|
on:
|
|
pull_request:
|
|
branches:
|
|
- main
|
|
- next
|
|
|
|
concurrency:
|
|
group: check-${{ github.ref }}
|
|
cancel-in-progress: true
|
|
|
|
env:
|
|
NODE_OPTIONS: --max_old_space_size=6144
|
|
|
|
jobs:
|
|
lint:
|
|
name: Lint
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: Get changed files
|
|
id: changed-files
|
|
uses: tj-actions/changed-files@v44
|
|
|
|
- name: Checkout repository
|
|
uses: actions/checkout@v4
|
|
|
|
- name: Prepare
|
|
uses: ./.github/actions/prepare
|
|
with:
|
|
build: false
|
|
|
|
- name: Run Linter
|
|
run: pnpm exec eslint ${{ steps.changed-files.outputs.all_changed_files }}
|
|
|
|
format:
|
|
name: Format
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: Get changed files
|
|
id: changed-files
|
|
uses: tj-actions/changed-files@v44
|
|
|
|
- name: Checkout repository
|
|
uses: actions/checkout@v4
|
|
|
|
- name: Prepare
|
|
uses: ./.github/actions/prepare
|
|
with:
|
|
build: false
|
|
|
|
- name: Run Formatter
|
|
run: pnpm exec prettier --check --ignore-unknown ${{ steps.changed-files.outputs.all_changed_files }}
|
|
|
|
unit:
|
|
name: Unit Tests
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: Checkout repository
|
|
uses: actions/checkout@v4
|
|
with:
|
|
# Vitest uses `git diff` under the hood to find the changed files in it's `--changed`
|
|
# option, which in turn means we need to fetch the full git history so git is able to diff
|
|
fetch-depth: 0
|
|
|
|
- name: Prepare
|
|
uses: ./.github/actions/prepare
|
|
|
|
- name: Run Tests
|
|
run: pnpm test -- -- --changed origin/${{ github.base_ref }} --passWithNoTests
|