Skip to content

feat: add video timestamp extraction for camera trap imports #302

feat: add video timestamp extraction for camera trap imports

feat: add video timestamp extraction for camera trap imports #302

Workflow file for this run

name: JavaScript Lint
on:
pull_request:
paths:
- '**/*.js'
- '**/*.jsx'
- '**/*.ts'
- '**/*.tsx'
- '**/*.mjs'
- '.prettierrc.yaml'
- '.prettierignore'
- 'eslint.config.mjs'
- 'package.json'
- 'package-lock.json'
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
lint:
name: Lint & Format Check
runs-on: ubuntu-22.04
timeout-minutes: 5
steps:
- name: Check out Git repository
uses: actions/checkout@v4
- name: Install Node.js
uses: actions/setup-node@v4
with:
node-version: 24.x
cache: 'npm'
- name: Install dependencies
run: npm ci
- name: Run ESLint
run: npm run lint
- name: Check formatting
run: npm run format:check