Update jest monorepo to v29 (major) #386
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: Lint | |
on: | |
pull_request: | |
paths: | |
- 'src/**/*.ts' | |
- '**eslint**' | |
- 'yarn.lock' | |
- '.github/workflows/eslint-source.yml' | |
jobs: | |
eslint: | |
name: ESLint | |
runs-on: ubuntu-latest | |
env: | |
HUSKY_SKIP_INSTALL: true | |
TERM: xterm-256color | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Cache node modules | |
uses: actions/cache@v1 | |
with: | |
path: node_modules | |
key: ${{ runner.OS }}-build-${{ hashFiles('**/yarn.lock') }} | |
restore-keys: | | |
${{ runner.OS }}-build-${{ env.cache-name }}- | |
${{ runner.OS }}-build- | |
${{ runner.OS }}- | |
- run: rm .yarnclean | |
- run: | | |
yarn install --frozen-lockfile --ignore-scripts --ignore-optional --non-interactive --silent --production=false | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
- name: Run ESLint | |
run: | | |
CHANGED_JS=$(git --no-pager diff --name-only ..origin/master | grep '^src\/.*\.ts$' | xargs ls -d 2>/dev/null | paste -sd " " -) | |
if [[ -z $(sed -e 's/[[:space:]]*$//' <<<${CHANGED_JS}) ]] || [[ "$CHANGED_JS" == "." ]]; | |
then | |
yarn lint | |
else | |
node node_modules/eslint/bin/eslint $CHANGED_JS | |
fi |