mirror of
https://github.com/directus/directus.git
synced 2026-01-29 10:28:06 -05:00
* Ignore node_modules for docs spellchecking * Add workflows for docs spellchecking * Update command to new structure * Skip core checks on pure docs changes * Don't build packages for spellcheck workflow Co-authored-by: Azri Kahar <42867097+azrikahar@users.noreply.github.com> --------- Co-authored-by: Azri Kahar <42867097+azrikahar@users.noreply.github.com> Co-authored-by: Rijk van Zanten <rijkvanzanten@me.com>
52 lines
871 B
YAML
52 lines
871 B
YAML
name: Check
|
|
|
|
on:
|
|
push:
|
|
branches:
|
|
- main
|
|
paths-ignore:
|
|
- docs/**
|
|
pull_request:
|
|
branches:
|
|
- main
|
|
paths-ignore:
|
|
- docs/**
|
|
|
|
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: Checkout repository
|
|
uses: actions/checkout@v3
|
|
|
|
- name: Prepare
|
|
uses: ./.github/actions/prepare
|
|
|
|
- name: Run Linter
|
|
run: pnpm lint
|
|
|
|
unit:
|
|
name: Unit Tests
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: Checkout repository
|
|
uses: actions/checkout@v3
|
|
|
|
- name: Prepare
|
|
uses: ./.github/actions/prepare
|
|
|
|
- name: Run Tests
|
|
run: pnpm -r test
|
|
|
|
analyze:
|
|
name: CodeQL Analysis
|
|
uses: ./.github/workflows/codeql-analysis.yml
|