mirror of
https://git.friendi.ca/friendica/friendica-addons.git
synced 2024-11-04 18:02:58 +00:00
12 lines
229 B
YAML
12 lines
229 B
YAML
name: Lint
|
|
on: push
|
|
jobs:
|
|
lint:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v2
|
|
- uses: actions/setup-node@v1
|
|
with:
|
|
node-version: 12
|
|
- run: npm ci
|
|
- run: npm run lint
|