Tdarr_Plugins/.github/workflows/lint.yml
HaveAGitGat b23bf31fa1 test
2020-12-10 17:50:24 +01:00

25 lines
437 B
YAML

name: Node.js CI
on:
push:
branches: ['**']
pull_request:
branches: ['**']
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [10.x, 12.x, 14.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 lint