Skip to content

Minor styling fixes throughout the application #21

Minor styling fixes throughout the application

Minor styling fixes throughout the application #21

Workflow file for this run

name: Lint
on:
pull_request:
branches:
- main
workflow_dispatch:
jobs:
run-linters:
name: Run linter
runs-on: ubuntu-latest
steps:
- name: Check out Git repository
uses: actions/checkout@v3
- name: Set up Node.js
uses: actions/setup-node@v3
with:
node-version: 18
cache: 'npm'
- name: Install Node.js dependencies
run: npm ci
- name: Run linters
run: npm run lint