Skip to content

Update mainpage.tsx #136

Update mainpage.tsx

Update mainpage.tsx #136

Workflow file for this run

name: Website CI
on:
pull_request:
branches: [ "main" ]
jobs:
build:
name: Website CI
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [22.x]
steps:
- uses: actions/checkout@v4
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
- name: Install Yarn
run: |
npm install -g yarn
- name: Build Website
run: |
corepack enable
cd website
yarn set version berry
yarn install
yarn build
- name: Uninstall Yarn
run: npm uninstall -g yarn