Skip to content

Merge pull request #16 from krckyboy/#10 #10

Merge pull request #16 from krckyboy/#10

Merge pull request #16 from krckyboy/#10 #10

Workflow file for this run

name: Lint Code Base
on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]
jobs:
run-lint:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v3
with:
# Full git history is needed to get a proper list of changed files within `super-linter`
fetch-depth: 0
- name: Install Dependencies
run: npm ci
working-directory: ./next
- name: Run Lint
run: npm run lint
working-directory: ./next