Skip to content

[#74] STORY: Allow adding movies to the watchlist #17

[#74] STORY: Allow adding movies to the watchlist

[#74] STORY: Allow adding movies to the watchlist #17

Workflow file for this run

name: CI
on:
pull_request:
jobs:
lint-and-format:
name: Lint & format
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v5
- uses: actions/setup-node@v5
with:
node-version: 20
cache: npm
- run: npm ci
- name: TypeScript
run: npx tsc --noEmit
- name: ESLint
run: npm run lint
- name: Prettier
run: npx prettier . --check
secret-scan:
name: Secret scan
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v5
with:
fetch-depth: 0
- uses: gitleaks/gitleaks-action@v2.3.9
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}