-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
47db230
commit 9c4f498
Showing
4 changed files
with
413 additions
and
102 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,53 @@ | ||
name: Lint and Code Quality Check | ||
|
||
on: | ||
push: | ||
branches: | ||
- main # change this to your default branch if it's not named 'main' | ||
pull_request: | ||
branches: | ||
- main # change this to your default branch if it's not named 'main' | ||
|
||
jobs: | ||
setup: | ||
runs-on: ubuntu-latest | ||
outputs: | ||
cache-hit: ${{ steps.cache.outputs.cache-hit }} | ||
|
||
steps: | ||
- name: Check out code | ||
uses: actions/checkout@v2 | ||
|
||
- name: Setup Node.js with cache | ||
uses: actions/setup-node@v2 | ||
with: | ||
node-version: "14" | ||
cache: "npm" | ||
|
||
- name: Cache node modules | ||
uses: actions/cache@v2 | ||
id: cache | ||
with: | ||
path: node_modules | ||
key: ${{ runner.OS }}-node-${{ hashFiles('**/package-lock.json') }} | ||
restore-keys: | | ||
${{ runner.OS }}-node- | ||
- name: Install dependencies | ||
run: npm ci | ||
|
||
eslint: | ||
needs: setup | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Check if node_modules is cached | ||
if: steps.setup.outputs.cache-hit != 'true' | ||
run: npm ci | ||
|
||
- name: Run ESLint | ||
run: npx eslint './**/*.ts' --format=json --output-file=eslint.json | ||
|
||
- name: Upload ESLint results | ||
uses: github/codeql-action/upload-sarif@v1 | ||
with: | ||
sarif_file: eslint.json |
Oops, something went wrong.