youtube-cue/.github/workflows/action.yml

18 lines
369 B
YAML
Raw Normal View History

2021-06-09 19:10:14 +00:00
on: push
name: Main Workflow
jobs:
tests:
strategy:
matrix:
2022-05-03 07:31:59 +00:00
node: ["18", "16", "14"]
2021-06-09 19:10:14 +00:00
name: Run NPM Stuff
runs-on: ubuntu-latest
steps:
2021-07-29 05:52:35 +00:00
- uses: actions/checkout@v1
- uses: actions/setup-node@v2
with:
node-version: ${{matrix.node}}
- run: npm install
- run: npm run lint
- run: npm run test