Merge pull request #2 from axelNTI/CVE-2025-29927-security-vulnerabil… #2
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 Verification on Push | |
on: | |
push: | |
branches: "**" | |
jobs: | |
check_linting: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout code | |
uses: actions/[email protected] | |
- name: Setup Node.js | |
uses: actions/[email protected] | |
with: | |
node-version: "latest" | |
- name: Install pnpm | |
uses: pnpm/[email protected] | |
with: | |
version: "latest" | |
- name: Install dependencies | |
run: pnpm i | |
- name: Lint code | |
run: pnpm format:check |