chore: remove QuestDB from showcase #503
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: Showcase Tests | |
on: | |
pull_request: | |
branches: | |
- main | |
- docusaurus-v** | |
paths: | |
- website/src/data/** | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.head_ref || github.run_id }} | |
cancel-in-progress: true | |
permissions: | |
contents: read | |
jobs: | |
validate-config: | |
name: Validate Showcase Config | |
timeout-minutes: 30 | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@8e5e7e5ab8b370d6c329ec480221332ada57f0ab # v3 | |
- name: Set up Node | |
uses: actions/setup-node@64ed1c7eab4cce3362f8c340dee64e5eaeef8f7c # v3 | |
with: | |
node-version: '16' | |
cache: yarn | |
- name: Installation | |
run: yarn | |
- name: Test | |
run: yarn test website/src/data/__tests__/user.test.ts |