Skip to content

Ai subpage

Ai subpage #8330

Workflow file for this run

name: Build check
on:
pull_request:
types: [opened, synchronize, reopened]
jobs:
build:
# only run in forks
if: github.event.pull_request.head.repo.full_name != github.repository
runs-on: ubuntu-latest
concurrency:
group: ${{ github.ref }}
cancel-in-progress: true
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: 18
- name: "Build website"
run: |
git submodule update --init
npm install
npm run build