build(deps-dev): bump ts-jest from 29.4.0 to 29.4.5 #361
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: Unit Test | |
| on: | |
| pull_request: | |
| branches: [ main ] | |
| permissions: | |
| checks: write | |
| contents: write | |
| pull-requests: write | |
| jobs: | |
| build: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Install pnpm | |
| run: npm install -g pnpm | |
| - name: ⤵️ Check out code from GitHub | |
| uses: actions/checkout@v3 | |
| - name: 🏗 Setup node version | |
| uses: actions/setup-node@v3 | |
| with: | |
| node-version: 22 | |
| cache: 'pnpm' | |
| - name: 🏗 Install dependencies | |
| run: pnpm install --frozen-lockfile | |
| - name: 🏗 Build Library | |
| run: pnpm build --if-present | |
| - name: 🧪 Run tests | |
| run: | | |
| pnpm test | |
| pnpm lint | |
| pnpm format:check |