Sharkey/.github/workflows/lint.yml

21 lines
322 B
YAML
Raw Normal View History

2021-07-29 19:18:19 +03:00
name: Lint
on: [push, pull_request]
jobs:
lint:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Setup Node.js
uses: actions/setup-node@v1
with:
node-version: 16.x
- name: Install
run: npm i
- name: Lint
run: npm run lint