Added support for multiblock questions / answers in Markdown parser #166
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: ts | |
on: | |
push: | |
branches: | |
- master | |
paths: | |
- "**/*.ts" | |
- "**/*.tsx" | |
- "**/*.js" | |
- "**/*.jsx" | |
pull_request: | |
branches: | |
- master | |
paths: | |
- "**/*.ts" | |
- "**/*.tsx" | |
- "**/*.js" | |
- "**/*.jsx" | |
jobs: | |
lint: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: oven-sh/setup-bun@v2 | |
with: | |
bun-version: latest | |
- uses: actions/checkout@v2 | |
- name: Use Node.js 20.x | |
uses: actions/setup-node@v4 | |
with: | |
node-version: 20.x | |
- name: "install dependencies" | |
run: bun install | |
- name: "run lint" | |
run: "bun run lint" | |
test: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: oven-sh/setup-bun@v2 | |
with: | |
bun-version: latest | |
- uses: actions/checkout@v2 | |
- name: Use Node.js 20.x | |
uses: actions/setup-node@v4 | |
with: | |
node-version: 20.x | |
- name: "install dependencies" | |
run: bun install | |
- name: "run build" | |
run: "bun run build" | |
- name: "run test" | |
run: "bun run test" | |
stale-api-schema: | |
name: Generated API schema matches source interfaces | |
runs-on: ubuntu-latest | |
steps: | |
- uses: oven-sh/setup-bun@v2 | |
with: | |
bun-version: latest | |
- uses: actions/checkout@v2 | |
- name: Use Node.js 20.x | |
uses: actions/setup-node@v4 | |
with: | |
node-version: 20.x | |
- name: "install dependencies" | |
run: bun install | |
- name: "run build" | |
run: "bun run build" | |
- name: "run generateSchema for the API" | |
working-directory: packages/api | |
run: "bun run generateSchema" | |
- name: "check if changes are pending" | |
run: "git diff --exit-code" | |
- name: "run generateSchema for the events validator" | |
working-directory: packages/store-shared | |
run: "bun run generateSchema" | |
- name: "run generateSchema for the ingester validator" | |
working-directory: packages/ingester | |
run: "bun run generateSchema" | |
- name: "check if changes are pending" | |
run: "git diff --exit-code" | |
working-directory: packages |