Skip to content

Migrate navigation from Bootstrap to Radix UI #1

Migrate navigation from Bootstrap to Radix UI

Migrate navigation from Bootstrap to Radix UI #1

Workflow file for this run

name: CI
on:
push:
branches: [ main, feat-migrate-header ]
pull_request:
branches: [ main ]
jobs:
test-formatting:
name: Test formatting
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version-file: '.nvmrc'
- name: Increase file watchers
run: echo fs.inotify.max_user_watches=524288 | sudo tee -a /etc/sysctl.conf && sudo sysctl -p
- name: Install dependencies
run: yarn install
- name: Check formatting
run: yarn format:check
lint:
name: Lint
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version-file: '.nvmrc'
- name: Install dependencies
run: yarn install
- name: Run linter
run: yarn lint
build:
name: Build
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version-file: '.nvmrc'
- name: Install dependencies
run: yarn install
- name: Build project
run: yarn build