Skip to content

update workspace and website dependencies #148

update workspace and website dependencies

update workspace and website dependencies #148

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