Skip to content

website: add join program link, reorganize icons, UI tweaks (#50) #146

website: add join program link, reorganize icons, UI tweaks (#50)

website: add join program link, reorganize icons, UI tweaks (#50) #146

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@v6
- name: ⚙️ Setup Node
uses: actions/setup-node@v6
with:
node-version: 24
cache: 'yarn'
- name: 🚚️ Install dependencies
working-directory: website
run: yarn install --frozen-lockfile
- name: ✅ Run lint checks
working-directory: website
run: yarn lint