Skip to content

website: move Prettier config to ESLint, fix warnings #139

website: move Prettier config to ESLint, fix warnings

website: move Prettier config to ESLint, fix warnings #139

Workflow file for this run

name: Website app checks
on:
push:
branches:
- main
pull_request:
concurrency:
group: ${{ github.workflow }}-${{ github.event_name }}-${{ github.ref }}
cancel-in-progress: true
jobs:
check:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: ⚙️ Setup Node
uses: actions/setup-node@v4
with:
node-version: '22'
cache: 'yarn'
- name: 🚚️ Install dependencies
working-directory: website
run: yarn install --frozen-lockfile
- name: ✅ Run lint checks
working-directory: website
run: yarn lint