chore: format #5
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
# when push to master branch, run the following jobs | |
# 1. checkout the code format | |
# 2. run unit tests | |
name: Check | |
on: [push, pull_request] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: pnpm/action-setup@v4 | |
- run: pnpm install | |
- run: pnpm format:check | |
- run: pnpm test |