2022-10-20 13:30:44 +00:00
|
|
|
name: "Lint: Javascript Client"
|
2022-09-09 17:18:04 +00:00
|
|
|
|
|
|
|
on:
|
|
|
|
# Trigger the workflow on push or pull request,
|
|
|
|
# but only for the main branch
|
|
|
|
push:
|
|
|
|
branches:
|
|
|
|
- main
|
2022-10-20 13:30:44 +00:00
|
|
|
paths:
|
|
|
|
- frontend
|
2022-09-09 17:18:04 +00:00
|
|
|
pull_request:
|
|
|
|
branches:
|
|
|
|
- main
|
2022-10-20 13:30:44 +00:00
|
|
|
paths:
|
|
|
|
- frontend
|
2022-09-09 17:18:04 +00:00
|
|
|
|
|
|
|
jobs:
|
|
|
|
run-linters:
|
|
|
|
name: Run linters
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
|
|
|
|
steps:
|
|
|
|
- name: Check out Git repository
|
2023-05-02 23:55:36 +00:00
|
|
|
uses: actions/checkout@v3
|
2022-09-09 17:18:04 +00:00
|
|
|
|
|
|
|
- name: 'Setup node'
|
|
|
|
uses: actions/setup-node@v3
|
|
|
|
with:
|
|
|
|
node-version: 16.17.0
|
|
|
|
cache: npm
|
|
|
|
cache-dependency-path: frontend/package-lock.json
|
|
|
|
|
|
|
|
# ESLint and Prettier must be in `package.json`
|
|
|
|
- name: 'Install NPM Dependencies'
|
|
|
|
run: |
|
|
|
|
cd frontend
|
2022-09-13 17:10:20 +00:00
|
|
|
npm install
|
2022-09-09 17:18:04 +00:00
|
|
|
|
|
|
|
- name: Run linters
|
|
|
|
uses: wearerequired/lint-action@v2
|
|
|
|
with:
|
|
|
|
prettier: true
|
2022-09-09 17:33:29 +00:00
|
|
|
prettier_dir: frontend
|
2022-10-25 18:04:12 +00:00
|
|
|
|
2022-09-20 17:39:49 +00:00
|
|
|
## Disabled due to error
|
2022-09-09 17:33:29 +00:00
|
|
|
# eslint: true
|
|
|
|
# eslint_dir: frontend
|