docs: fix wrong link href #629
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: CI | |
on: | |
push: | |
branches: | |
- main | |
pull_request: | |
branches: | |
- main | |
jobs: | |
lint: | |
runs-on: ubuntu-latest | |
timeout-minutes: 15 | |
steps: | |
- uses: actions/checkout@v3 | |
with: | |
fetch-depth: 0 | |
- uses: oven-sh/setup-bun@v1 | |
- name: Install | |
run: bun install | |
- name: Lint files | |
run: bun run lint | |
- name: Type check files | |
run: bun run tsc | |
- name: Run tests | |
run: bun run test |