ci: backport eliza ci setup to rs and add pr and issue templates #6
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: Block Minified JavaScript/TypeScript | |
on: | |
pull_request: | |
branches: ["main", "develop", "*"] | |
push: | |
branches: ["main", "develop", "*"] | |
jobs: | |
block-minified-code: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Check out code | |
uses: actions/checkout@v4 | |
- name: Make script executable | |
run: chmod +x ./scripts/detect-minified-code.sh | |
- name: Detect potential minified code | |
run: ./scripts/detect-minified-code.sh |