Skip to content

New logo & favicon, size and placement adjustments #235

New logo & favicon, size and placement adjustments

New logo & favicon, size and placement adjustments #235

Workflow file for this run

# yaml-language-server: $schema=https://json.schemastore.org/github-workflow.json
name: Prettier checks
on:
push:
branches: ['main', 'feat/svelte-app']
pull_request:
branches: ['main', 'feat/svelte-app']
jobs:
prettier:
name: Prettier
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Use Node.js
uses: actions/setup-node@v4
with:
node-version: 20
cache: 'npm'
- name: Install Dependencies
run: npm ci
- name: Check formatting with Prettier
run: npm run prettier:check:ci