Tdarr_Plugins/.github/workflows/lint.yml
HaveAGitGat 9bbc4fbec9
Check plugins (#221)
* Include examples in checkPlugins. Fix errors and lint.

* Remove on push

* Show tick for successful tests
2021-12-24 10:35:35 +01:00

23 lines
420 B
YAML

name: Node.js CI
on:
pull_request:
branches: ['**']
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [16.x]
steps:
- uses: actions/checkout@v2
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v1
with:
node-version: ${{ matrix.node-version }}
- run: npm i
- run: npm run checkPlugins && npm run lint