Skip to content

Bump nuxt from 2.18.1 to 4.1.1 in /Website #263

Bump nuxt from 2.18.1 to 4.1.1 in /Website

Bump nuxt from 2.18.1 to 4.1.1 in /Website #263

Workflow file for this run

# This workflow lints the code in /Website, if any was committed
name: Website Lint
on:
push:
branches:
- main
paths:
- Website/**
pull_request:
branches:
- main
paths:
- Website/**
jobs:
weblint:
runs-on: ubuntu-24.04
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Install dependencies
run: npm install
working-directory: Website
- name: Run lint
run: npm run lint
working-directory: Website