Update typescript-eslint monorepo to v6 #378
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: UpLeveled Preflight check | |
on: [push] | |
jobs: | |
Preflight-check: | |
name: UpLeveled Preflight check | |
runs-on: ubuntu-latest | |
steps: | |
- name: Get UpLeveled check image | |
run: docker pull ghcr.io/upleveled/preflight | |
- name: Run Get UpLeveled check image | |
run: | | |
MY_STRING=$(docker run ghcr.io/upleveled/preflight https://github.com/${{ github.repository}} ${{ github.ref_name }}) | |
echo $MY_STRING | |
MY_STRING="${MY_STRING//'%'/'%25'}" | |
MY_STRING="${MY_STRING//$'\n'/'%0A'}" | |
MY_STRING="${MY_STRING//$'\r'/'%0D'}" | |
if [[ $MY_STRING == *"FAILED"* ]]; then | |
exit 1 | |
fi |