fix(react): security update - dependencies / node #227
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: Pull Request | |
| on: | |
| pull_request: | |
| jobs: | |
| # lint all the files | |
| lint: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v4 | |
| - name: Install PNPM & Node | |
| uses: pocket/pocket-monorepo/.github/actions/install-pnpm-and-node@main | |
| - name: Eslint | |
| run: pnpm lint | |
| # unit test all the files | |
| unit-tests: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v4 | |
| - name: Install PNPM & Node | |
| uses: pocket/pocket-monorepo/.github/actions/install-pnpm-and-node@main | |
| - name: Test | |
| run: pnpm test:ci |