Skip to content

Trickplay thumbnails #229

Trickplay thumbnails

Trickplay thumbnails #229

Workflow file for this run

name: Linter
on:
pull_request:
branches: ["main"]
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
lint:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
with:
ref: ${{ github.event.pull_request.head.ref }}
- name: Configure repo
run: |
git config --local user.email "[email protected]"
git config --local user.name "github-action linter"
- name: Use Node.js 18.x
uses: actions/setup-node@v3
with:
node-version: 18.x
cache: "npm"
- name: Install dependencies
run: npm ci
- name: Run linter
run: npm run lint:fix
- name: Run formatter
run: npm run format:fix
- name: Commit & Push Changes
run: |
git add "." && git commit -m "Lint fix" --no-verify && git push || true