upgrade react version to 18 #BLT-1231 #BLT-1232 #1963
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
#copied from https://github.com/pre-commit/action | |
name: pre-commit | |
on: | |
pull_request: | |
jobs: | |
pre-commit: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- uses: actions/setup-python@v2 | |
- uses: actions/setup-node@v2 | |
- uses: pre-commit/[email protected] | |
# this will push back fixes to the pull request branch. | |
with: | |
token: ${{ secrets.GITHUB_TOKEN }} |