Skip to content

Adding linter and github workflows (#6) #2

Adding linter and github workflows (#6)

Adding linter and github workflows (#6) #2

name: NextJS Lint and Build
on:
push:
branches:
- master
pull_request:
branches:
- master
jobs:
lint-and-build:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v3
- name: Set up Node.js
uses: actions/setup-node@v3
with:
node-version: '20.x'
cache: 'npm' # Cache npm dependencies
- name: Install dependencies
run: npm install
- name: Run ESLint
run: npm run lint
- name: Build the project
run: npm run build
- name: TypeScript type check
if: always() && fileExists('tsconfig.json')
run: npm run type-check
g

Check failure on line 37 in .github/workflows/nextjs-lint-build.yml

View workflow run for this annotation

GitHub Actions / .github/workflows/nextjs-lint-build.yml

Invalid workflow file

You have an error in your yaml syntax on line 37