Improve search indexing and display #104
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Test Workflow | |
on: | |
pull_request: | |
jobs: | |
test: | |
name: Test | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout Code | |
uses: actions/checkout@v4 | |
- name: Setup Node | |
uses: actions/setup-node@v4 | |
with: | |
node-version: "lts/iron" | |
- name: Node Modules Cache | |
uses: actions/cache@v4 | |
id: cache | |
with: | |
path: | | |
node_modules | |
*/*/node_modules | |
key: ${{ runner.os }}-nm-${{ hashFiles('**/yarn.lock') }} | |
- name: Install dependencies | |
run: | | |
yarn | |
- name: Build Schema | |
run: | | |
yarn build:schema && yarn | |
- name: Build Domain | |
run: | | |
yarn build:domain && yarn | |
# Organize | |
- name: Global - Sort Package.json | |
run: | | |
yarn fix:package | |
./tools/check_git_status.sh | |
- name: Global - Check Organization | |
run: | | |
yarn fix:organize | |
./tools/check_git_status.sh | |
# Domain | |
- name: Domain - Test Lint | |
run: | | |
yarn test:domain:lint | |
- name: Domain - Test Types | |
run: | | |
yarn test:domain:types | |
- name: Domain - Test Dependencies | |
run: | | |
yarn test:domain:deps | |
# Server | |
- name: Server - Test Lint | |
run: | | |
yarn test:server:lint | |
- name: Server - Test Types | |
run: | | |
yarn test:server:types | |
- name: Server - Test Dependencies | |
run: | | |
yarn test:server:deps | |
# Schema | |
- name: Schema - Test Lint | |
run: | | |
yarn test:schema:lint | |
- name: Schema - Test Types | |
run: | | |
yarn test:schema:types | |
- name: Schema - Test Dependencies | |
run: | | |
yarn test:schema:deps | |
# Web | |
- name: Web - Test Lint | |
run: | | |
yarn test:web:lint | |
- name: Web - Test Types | |
run: | | |
yarn test:web:types | |
- name: Web - Test Dependencies | |
run: | | |
yarn test:web:deps | |
# Migrate | |
- name: Migrate - Test Lint | |
run: | | |
yarn test:migrate:lint | |
- name: Migrate - Test Types | |
run: | | |
yarn test:migrate:types | |
- name: Migrate - Test Dependencies | |
run: | | |
yarn test:migrate:deps |