mirror of
https://github.com/RoboSats/robosats.git
synced 2024-12-14 19:36:24 +00:00
293c0b604d
* Add SVG icons for map pins * Add federation basis and new coordinator form (#793) * Add new coordinator entry issue form * Add Federation basis * Fix eslint errors from F2F and fix languages * Redo eslint @typescript-eslint/strict-boolean-expressions * Robot Page working * Contexts Working * Garage Working * CurrentOrder working * Federation model working --------- Co-authored-by: Reckless_Satoshi <reckless.satoshi@protonmail.com> Co-authored-by: Reckless_Satoshi <90936742+Reckless-Satoshi@users.noreply.github.com>
45 lines
958 B
YAML
45 lines
958 B
YAML
name: "Lint: Javascript Client"
|
|
|
|
on:
|
|
# Trigger the workflow on push or pull request,
|
|
# but only for the main branch
|
|
push:
|
|
branches:
|
|
- main
|
|
paths:
|
|
- frontend
|
|
pull_request_target:
|
|
branches:
|
|
- main
|
|
paths:
|
|
- frontend
|
|
|
|
jobs:
|
|
run-linters:
|
|
name: Run linters
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
- name: Check out Git repository
|
|
uses: actions/checkout@v4
|
|
|
|
- name: 'Setup node'
|
|
uses: actions/setup-node@v4
|
|
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
|
|
npm install
|
|
|
|
- name: Run linters
|
|
uses: wearerequired/lint-action@v2
|
|
with:
|
|
prettier: true
|
|
prettier_dir: frontend
|
|
eslint: true
|
|
eslint_dir: frontend |