feat: documents link support (#20) #6
This file contains hidden or 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: Web | |
| on: | |
| push: | |
| branches: | |
| - main | |
| paths: | |
| - web/** | |
| - .github/workflows/web.yaml | |
| pull_request: | |
| branches: | |
| - main | |
| paths: | |
| - web/** | |
| - .github/workflows/web.yaml | |
| jobs: | |
| test: | |
| runs-on: ubuntu-latest | |
| defaults: | |
| run: | |
| working-directory: web | |
| steps: | |
| - name: Checkout code | |
| uses: actions/checkout@v4 | |
| - name: Set up Node.js | |
| uses: actions/setup-node@v4 | |
| with: | |
| node-version: "22" | |
| - name: Install dependencies | |
| run: npm ci | |
| - name: Formatting | |
| run: npm run test:format | |
| - name: Types | |
| run: npm run test:types | |
| - name: Unit tests | |
| run: npm run test:unit |