haveno-ui/.github/workflows/lint.yml
Subir b029419e7f
chore(styles): theme
- updated theme colors
- fixed button styles
- updated wallet balance molecule
- run CI checks on develop branch

---

Authored-by: schowdhuri
2022-04-29 00:42:52 +05:30

38 lines
713 B
YAML

name: Linters
on:
push:
branches:
- master
- develop
paths:
- "**.js"
- "**.ts"
- ".github/workflows/lint.yml"
pull_request:
paths:
- "**.js"
- "**.ts"
- "package-lock.json"
- ".github/workflows/lint.yml"
defaults:
run:
shell: "bash"
jobs:
eslint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v2
with:
node-version: 16 # Need for npm >=7.7
cache: "yarn"
# TODO: Install not all dependencies, but only those required for this workflow
- name: Install dependencies
run: yarn install --frozen-lockfile
- run: yarn lint