build(deps): bump the npm_and_yarn group across 1 directories with 5 updates #13295
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: JavaScript Lint | |
on: | |
push: | |
branches: | |
- main | |
paths: | |
- '**/*.js' | |
- '**/*.ts' | |
- '**/*.cjs' | |
- '**/*.mjs' | |
- '**/*.json' | |
- '.github/workflows/javascript-lint.yml' | |
- '.github/actions/setup-js-env/' | |
pull_request: | |
paths: | |
- '**/*.js' | |
- '**/*.ts' | |
- '**/*.cjs' | |
- '**/*.mjs' | |
- '**/*.json' | |
- '.github/workflows/javascript-lint.yml' | |
- '.github/actions/setup-js-env/' | |
jobs: | |
eslint: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: ./.github/actions/setup-js-env | |
- name: TypeScript checking | |
run: | | |
npm run tsc-no-emit | |
- name: npm run lint | |
run: | | |
npm run lint |