🏡 index : github.com/captn3m0/youtube-cue.git

on: push
name: Main Workflow
jobs:
  tests:
    strategy:
      matrix:
        node: ["18", "20", "21"]
    name: Run NPM Stuff
    runs-on: ubuntu-latest
    steps:
      - 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