Skip to content

Add cache control headers for slow endpoint #603

Add cache control headers for slow endpoint

Add cache control headers for slow endpoint #603

Workflow file for this run

name: Lint
on:
pull_request: {}
jobs:
lint:
name: Lint
runs-on: ubuntu-latest
strategy:
matrix:
repo: ["miiverse-api", "juxtaposition-ui"]
steps:
- name: Checkout
uses: actions/checkout@v6
- name: Setup Node.js
uses: actions/setup-node@v6
with:
node-version: "24"
- name: Install dependencies
run: npm ci
- name: Lint
run: npm run lint -- --max-warnings=0
working-directory: ./apps/${{ matrix.repo }}