Skip to content

#34 Renamed directories, made the required change in lint.yml and add… #37

#34 Renamed directories, made the required change in lint.yml and add…

#34 Renamed directories, made the required change in lint.yml and add… #37

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: ./frontend
- name: Run Lint
run: npm run lint
working-directory: ./frontend