mirror of
https://github.com/owntracks/frontend.git
synced 2026-04-21 02:06:41 +00:00
16 lines
267 B
YAML
16 lines
267 B
YAML
name: Lint
|
|
|
|
on: [push]
|
|
|
|
jobs:
|
|
lint:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v2
|
|
- uses: actions/setup-node@v2
|
|
with:
|
|
node-version: '14'
|
|
- run: yarn install
|
|
- run: yarn lint:js
|
|
- run: yarn lint:md
|