8000 Update all of nextjs to version 15.3.2 · TheAlgorithms/website@c81646f · GitHub
[go: up one dir, main page]

Skip to content

🚨 [security] Update all of nextjs 12.1.0 → 15.3.2 (major) #741

🚨 [security] Update all of nextjs 12.1.0 → 15.3.2 (major)

🚨 [security] Update all of nextjs 12.1.0 → 15.3.2 (major) #741

Workflow file for this run

name: lint
on:
push:
branches:
- main
pull_request:
jobs:
lint:
name: tsc and eslint
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v3
with:
node-version: "18"
- name: Install dependencies
run: yarn
- name: Fetch Algorithms
run: yarn fetch-algorithms
- name: Lint
run: yarn lint
0