Skip to content

feat(jex): JSON Schema type checking library #5

feat(jex): JSON Schema type checking library

feat(jex): JSON Schema type checking library #5

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