Skip to content

Media pauser

Media pauser #35

Workflow file for this run

name: Lint and Format Check
on: pull_request
jobs:
lint-and-format:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Set up Node.js
uses: actions/setup-node@v4
with:
node-version: '16'
- name: Install dependencies
run: npm ci
- name: Lint with ESLint
run: npm run lint
- name: Format with Prettier
run: npm run format