mirror of
https://github.com/owntracks/frontend.git
synced 2026-08-23 11:26:16 +00:00
17 lines
295 B
YAML
17 lines
295 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
|
|
- run: yarn lint:scss
|