This repository has been archived by the owner on Nov 3, 2023. It is now read-only.
chore: Remove the ability to switch to filter-box chart when DASHBOAR… #302
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: Prefer Typescript | |
on: | |
push: | |
branches-ignore: | |
- "dependabot/**" | |
pull_request: | |
jobs: | |
prefer_typescript: | |
if: github.ref == 'ref/heads/master' && github.event_name == 'pull_request' | |
name: Prefer Typescript | |
runs-on: ubuntu-latest | |
steps: | |
- name: "Checkout ${{ github.ref }} ( ${{ github.sha }} )" | |
uses: actions/checkout@v2 | |
with: | |
persist-credentials: false | |
submodules: recursive | |
- name: Get changed files | |
id: changed | |
uses: ./.github/actions/file-changes-action | |
with: | |
githubToken: ${{ secrets.GITHUB_TOKEN }} | |
- name: Determine if a .js or .jsx file was added | |
id: check | |
run: | | |
js_files_added() { | |
jq -r ' | |
map( | |
select( | |
endswith(".js") or endswith(".jsx") | |
) | |
) | join("\n") | |
' ${HOME}/files_added.json | |
} | |
echo ::set-output name=js_files_added::$(js_files_added) | |
- if: steps.check.outputs.js_files_added | |
name: Add Comment to PR | |
uses: ./.github/actions/comment-on-pr | |
continue-on-error: true | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
with: | |
msg: | | |
### WARNING: Prefer TypeScript | |
Looks like your PR contains new `.js` or `.jsx` files: | |
``` | |
${{steps.check.outputs.js_files_added}} | |
``` | |
As decided in [SIP-36](https://github.com/apache/superset/issues/9101), all new frontend code should be written in TypeScript. Please convert above files to TypeScript then re-request review. |