Skip to content

feat(mobile): full responsive layout with hamburger nav for MarsFounderIO #33

feat(mobile): full responsive layout with hamburger nav for MarsFounderIO

feat(mobile): full responsive layout with hamburger nav for MarsFounderIO #33

Workflow file for this run

name: CI
on:
pull_request:
push:
branches:
- main
jobs:
validate:
runs-on: ubuntu-latest
timeout-minutes: 15
env:
PORT: 4173
BASE_PATH: /
steps:
- name: Check out repository
uses: actions/checkout@v4
- name: Set up pnpm
uses: pnpm/action-setup@v4
with:
version: 10.33.2
run_install: false
- name: Set up Node.js
uses: actions/setup-node@v4
with:
node-version: 22
cache: pnpm
- name: Install dependencies
run: pnpm install --frozen-lockfile
- name: Typecheck
run: pnpm typecheck
- name: Build workspace
run: pnpm build