chore: bump tsdown from 0.21.1 to 0.21.2 #18
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: Code Quality | |
| on: | |
| pull_request: | |
| push: | |
| jobs: | |
| lint: | |
| name: Lint | |
| runs-on: macos-latest | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v4 | |
| - name: Install just | |
| uses: extractions/setup-just@v3 | |
| - name: Setup Node | |
| uses: alpheusci/setup-node@v1 | |
| - name: Install ls-lint | |
| run: brew install ls-lint | |
| - name: Install typos-cli | |
| run: brew install typos-cli | |
| - name: Build packages | |
| run: just build | |
| - name: Run linters | |
| run: just lint && just lint-biome |