fix(jex): optional property in parent can be omitted in child #18
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: 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 |