chore(deps): bump @eslint/plugin-kit from 0.2.8 to 0.3.4 #10
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: Validate library's code | |
| on: | |
| push: | |
| branches: [main] | |
| pull_request: | |
| branches: [main] | |
| jobs: | |
| lint: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout code | |
| uses: actions/checkout@v3 | |
| - name: Set up Node.js | |
| uses: actions/setup-node@v3 | |
| with: | |
| node-version: "22.17" | |
| - name: Set up pnpm as a package manager | |
| uses: pnpm/action-setup@v2 | |
| with: | |
| version: latest | |
| - name: Install dependencies | |
| run: pnpm install | |
| shell: bash | |
| - name: Run ESLint script and validate | |
| run: pnpm run lint | |
| shell: bash | |
| - name: Build a project using TypeScript Compiler | |
| run: pnpm exec tsc | |
| shell: bash | |
| - name: Build a project | |
| run: pnpm run build | |
| shell: bash |