Skip to content
This repository has been archived by the owner on Jan 2, 2024. It is now read-only.

Build CMS

Build CMS #1409

Workflow file for this run

name: Build CMS
on:
pull_request:
branches: [master]
merge_group:
types: [checks_requested]
jobs:
build_cms:
name: 'Build CMS'
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Setup Node
uses: actions/setup-node@v4
with:
node-version: 18
- name: Cache dependencies
uses: actions/cache@v3
with:
path: '**/node_modules'
key: ${{ runner.os }}-modules-${{ hashFiles('**/yarn.lock') }}
- name: Install dependencies
run: yarn --frozen-lockfile --ignore-scripts
- name: Build with yarn
run: yarn --cwd cms build