Skip to content

Feature/createCharForm3 (#19) #13

Feature/createCharForm3 (#19)

Feature/createCharForm3 (#19) #13

Workflow file for this run

name: ESLint
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Use Node.js
uses: actions/setup-node@v3
with:
node-version: "18" # Adjust if needed
cache: "npm"
- name: Install project dependencies
run: npm install
- name: Install @nuxt/eslint
run: npm install @nuxt/[email protected] # Or latest compatible version
- name: Run Prettier
run: npx prettier . --write
- name: Run ESLint
run: npx eslint .