CDE-25 Home step preview to read real data from the file #6
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: CI for PRs | |
on: | |
pull_request: | |
branches: [ main, develop ] | |
jobs: | |
super-linter: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout Code | |
uses: actions/checkout@v2 | |
- name: Run Super-Linter | |
uses: super-linter/[email protected] | |
env: | |
VALIDATE_ALL_CODEBASE: false | |
VALIDATE_TYPESCRIPT_ES: true | |
VALIDATE_TSX: true | |
DEFAULT_BRANCH: main | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
FILTER_REGEX_INCLUDE: (.*\.ts$|.*\.tsx$) | |
LINTER_RULES_PATH: / | |
TYPESCRIPT_ES_CONFIG_FILE: .eslintrc.cjs | |