Bump braces from 3.0.2 to 3.0.3 #91
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
name: Check the PR | |
on: [pull_request] | |
jobs: | |
check: | |
name: Check the PR Job | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: pnpm/[email protected] | |
with: | |
version: ^8 | |
- uses: actions/setup-node@v3 | |
with: | |
node-version: 16 | |
check-latest: true | |
cache: pnpm | |
cache-dependency-path: pnpm-lock.yaml | |
- run: pnpm install --frozen-lockfile | |
- run: pnpm test | |
- run: pnpm type:check | |
- run: pnpm lint | |
- run: pnpm build |