Skip to content

💄 restructures footer and increases page height accordingly #6

💄 restructures footer and increases page height accordingly

💄 restructures footer and increases page height accordingly #6

Workflow file for this run

name: React Linting
on: push
env:
NODE_OPTIONS: --max_old_space_size=4096
jobs:
prettier:
name: Prettier
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: "21"
- name: Restore workspace cache
uses: actions/cache@v3
with:
path: "**/node_modules"
key: ${{ runner.os }}-${{ hashFiles('**/yarn.lock') }}
- name: Install dependencies
run: yarn
- name: Check formatting with Prettier
run: yarn prettier:check:ci