Skip to content

Got search working ahead of entityRelation connection #6

Got search working ahead of entityRelation connection

Got search working ahead of entityRelation connection #6

Workflow file for this run

# This is a basic workflow to help you get started with Actions
name: Test
on:
workflow_call:
workflow_dispatch:
push:
branches:
- "*" # matches every branch that doesn't contain a '/'
- "*/*" # matches every branch containing a single '/'
- "**" # matches every branch
# - "!main" # excludes master
- "!release/production" # excludes master
# A workflow run is made up of one or more jobs that can run sequentially or in parallel
jobs:
# This workflow contains a single job called "build"
test:
# The type of runner that the job will run on
runs-on: ubuntu-latest
timeout-minutes: 10
# Steps represent a sequence of tasks that will be executed as part of the job
steps:
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it
- uses: actions/checkout@v3
- uses: oven-sh/setup-bun@v1
- uses: actions/setup-node@v3
- run: bun install
- name: Test
run: bun run test-recursive
env:
PRIVATE_KEY: ${{ secrets.TEST_PRIVATE_KEY }}
PUBLIC_KEY: ${{ secrets.TEST_PUBLIC_KEY }}
typecheck:
# The type of runner that the job will run on
runs-on: ubuntu-latest
timeout-minutes: 10
# Steps represent a sequence of tasks that will be executed as part of the job
steps:
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it
- uses: actions/checkout@v3
id: checkout
- uses: oven-sh/setup-bun@v1
- run: bun install
- name: Typecheck
run: bun run typecheck
lint:
# The type of runner that the job will run on
runs-on: ubuntu-latest
timeout-minutes: 10
# Steps represent a sequence of tasks that will be executed as part of the job
steps:
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it
- uses: actions/checkout@v3
id: checkout
- uses: oven-sh/setup-bun@v1
- run: bun install
- name: Lint
run: bun run lint-quiet
codegen:
# The type of runner that the job will run on
runs-on: ubuntu-latest
timeout-minutes: 10
# Steps represent a sequence of tasks that will be executed as part of the job
steps:
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it
- uses: actions/checkout@v3
- uses: oven-sh/setup-bun@v1
- run: bun install
- run: bun run graphql-codegen