Merge pull request #35 from Turizak/slandath-patch-1 #46
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Formatting | |
on: | |
push: | |
branches: [main] | |
pull_request: | |
branches: [main] | |
jobs: | |
linting: | |
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 ci | |
- 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 . | |