Skip to content

Display organisations as table #9

Display organisations as table

Display organisations as table #9

Workflow file for this run

name: Frontend CI - prettier
on:
push:
paths:
- frontend/**
jobs:
build:
runs-on: ubuntu-latest
defaults:
run:
working-directory: frontend
steps:
- name: Checkout Repository
uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: 18
cache: 'npm'
cache-dependency-path: '**/package-lock.json' # THIS PATTERN did the trick for me.
- run: npm ci
- name: Run Prettier Check
run: npm run prettier:check