fix: constrain dns and route rule preferred_by to tag types #73
Workflow file for this run
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: CI | |
| on: | |
| pull_request: | |
| push: | |
| jobs: | |
| lint-and-format: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v6 | |
| - name: Setup Deno | |
| uses: denoland/setup-deno@v2 | |
| with: | |
| deno-version: latest | |
| cache: true | |
| - name: Type check | |
| run: deno check **/*.ts | |
| - name: Check formatting | |
| run: deno fmt --check **/*.ts | |
| - name: Run lint | |
| run: deno lint |