[CI] Adding CodeQL Configuration, File Change Limitation Script, Linting, Formatting, and Type-Checking #5
Workflow file for this run
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: Checking workflow files | |
on: | |
pull_request: | |
paths: | |
- '.github/**' | |
- 'env.example' | |
- '.node-version' | |
- '.husky/**' | |
- 'scripts/**' | |
- 'package.json' | |
- 'tsconfig.json' | |
- '.gitignore' | |
- '.eslintrc.json' | |
- '.eslintignore ' | |
- 'vite.config.ts' | |
- 'CODEOWNERS' | |
- 'LICENSE' | |
jobs: | |
Checking-for-unauthorized-file-changes: | |
name: Checking for unauthorized file changes | |
runs-on: ubuntu-latest | |
steps: | |
- name: Unauthorized file modification in PR | |
run: exit 1 |