Skip to content

fix(jex): optional property in parent can be omitted in child #18

fix(jex): optional property in parent can be omitted in child

fix(jex): optional property in parent can be omitted in child #18

Workflow file for this run

name: Jex
on:
pull_request:
paths:
- 'jex/**'
defaults:
run:
working-directory: ./jex
jobs:
jex:
runs-on: ubuntu-latest
timeout-minutes: 15
steps:
- uses: actions/checkout@v2
- uses: pnpm/action-setup@v2.2.4
with:
version: 8
- name: Install And Build
run: pnpm install && pnpm build
- name: Format Check
run: pnpm format:check
- name: Type Check
run: pnpm type:check
- name: Test
run: pnpm test