mirror of
https://github.com/UofCBaja/BajaUofCWebsite.git
synced 2025-06-15 13:24:17 -06:00
change github actions to use eslint
This commit is contained in:
parent
9541c5c081
commit
f659cb0ccb
11
.github/workflows/testAutomatic.yaml
vendored
11
.github/workflows/testAutomatic.yaml
vendored
@ -1,6 +1,6 @@
|
|||||||
# name of the workflow.
|
# name of the workflow.
|
||||||
# this is optional.
|
# this is optional.
|
||||||
name: Continuous Integration
|
name: EsLint Check for Correctness in Code
|
||||||
|
|
||||||
# events that will trigger this workflow.
|
# events that will trigger this workflow.
|
||||||
# here, we only have "pull_request", so the workflow will run
|
# here, we only have "pull_request", so the workflow will run
|
||||||
@ -22,7 +22,7 @@ jobs:
|
|||||||
# name of the step.
|
# name of the step.
|
||||||
# steps run sequentially.
|
# steps run sequentially.
|
||||||
# this is optionale
|
# this is optionale
|
||||||
- name: checkout
|
- name: checkout use
|
||||||
# each step can either have "uses" or "run".
|
# each step can either have "uses" or "run".
|
||||||
# "uses" run an action written somewhere other than this workflow .
|
# "uses" run an action written somewhere other than this workflow .
|
||||||
# usually from the community.
|
# usually from the community.
|
||||||
@ -32,5 +32,8 @@ jobs:
|
|||||||
|
|
||||||
# another step.
|
# another step.
|
||||||
# this step runs a bash (Ubuntu's default shell) command
|
# this step runs a bash (Ubuntu's default shell) command
|
||||||
- name: list files
|
- name: Install Modules
|
||||||
run: ls
|
run: yarn
|
||||||
|
|
||||||
|
- name: Run ESLint
|
||||||
|
run: eslint . --ext .js,.jsx,.ts,.tsx
|
||||||
|
Loading…
x
Reference in New Issue
Block a user