chore(deps): update npm packages (#253) #743
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: Test | |
| on: | |
| pull_request: | |
| types: [opened, synchronize] | |
| push: | |
| branches: | |
| - main | |
| permissions: {} | |
| jobs: | |
| test: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout repository | |
| uses: actions/checkout@93cb6efe18208431cddfb8368fd83d5badbf9bfd # v5.0.1 | |
| with: | |
| persist-credentials: false | |
| - uses: ./.github/actions/pnpm | |
| - name: Run oxlint | |
| run: npx oxlint --type-aware | |
| - name: Run Format (prettier) | |
| run: npx prettier . --check | |
| - name: Type Check | |
| run: npx tsc --noEmit | |
| - name: Run tests | |
| run: pnpm run test --coverage |