Skip to content

Run eslint on the scripts directory #6

Run eslint on the scripts directory

Run eslint on the scripts directory #6

Workflow file for this run

name: RxPlayer Script Checks
on:
pull_request:
types: [opened, synchronize, reopened]
paths:
- scripts/**
jobs:
scripts_lint:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [20.x]
# See supported Node.js release schedule at https://nodejs.org/en/about/releases/
steps:
- uses: actions/checkout@v2
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v2
with:
node-version: ${{ matrix.node-version }}
cache: "npm"
- run: npm install
- run: npm run lint:scripts