Bump webpack from 5.68.0 to 5.94.0 #37
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 CI | |
on: | |
pull_request: | |
push: | |
branches: | |
- master | |
jobs: | |
eslint: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Install modules | |
run: npm ci | |
- name: Run ESLint | |
run: npm run-script eslint | |
prettier: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Install modules | |
run: npm ci | |
- name: Run Prettier Check | |
run: npm run-script prettier-check |