Skip to content

Pr/theme customisation #12

Pr/theme customisation

Pr/theme customisation #12

Workflow file for this run

name: Pull Request Review
on:
pull_request:
branches: [ master ]
permissions:
contents: read
pull-requests: read
jobs:
build:
name: Build explorer
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version: 22
cache: yarn
cache-dependency-path: yarn.lock
- name: Install dependencies
run: yarn install --frozen-lockfile
- name: Build
run: yarn build
env:
NODE_OPTIONS: --max_old_space_size=4096