chore(deps): update dependency eslint-plugin-prettier to v5.5.5 - autoclosed #133
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: Code checks | |
| on: | |
| push: | |
| branches: [main] | |
| pull_request: | |
| branches: [main] | |
| jobs: | |
| verify: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - uses: actions/setup-node@v4 | |
| with: | |
| node-version: "24.x" | |
| - name: Setup PNPM | |
| uses: pnpm/action-setup@v2 | |
| with: | |
| version: 10 | |
| - name: Dependencies OK | |
| run: pnpm install --frozen-lockfile | |
| - name: Library builds | |
| run: pnpm build | |
| - name: Code quality OK | |
| run: pnpm lint | |
| - name: Tests OK | |
| run: pnpm test | |
| - name: Audit OK | |
| run: pnpm audit --audit-level moderate | |
| env: | |
| CI: true |