Tdarr_Plugins/.github/workflows/lint.yml
HaveAGitGat c729fad9f5 Revert "Add new tests (#311)"
This reverts commit 2a0a7e1bfc.
2022-05-22 17:43:42 +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