Skip to content

Zsc page

Zsc page #547

Workflow file for this run

name: Build
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
Build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Get yarn cache directory path
id: yarn-cache-dir-path
run: echo "dir=$(yarn cache dir)" >> $GITHUB_OUTPUT
- uses: actions/cache@v4
id: yarn-cache
with:
path: ${{ steps.yarn-cache-dir-path.outputs.dir }}
key: ${{ runner.os }}-yarn-${{ hashFiles('**/yarn.lock') }}
restore-keys: |
${{ runner.os }}-yarn-
- uses: actions/cache@v4
id: node-modules-cache
with:
path: |
node_modules
packages/docs-ui/node_modules
packages/types/node_modules
packages/tsconfig/node_modules
packages/docs-ui/node_modules
packages/eslint-config-docs/node_modules
key: ${{ runner.os }}-node_modules-${{ hashFiles('**/yarn.lock') }}
restore-keys: |
${{ runner.os }}-node_modules-
- uses: actions/cache@v4
id: static-assets-cache
with:
path: apps/docs/static
key: ${{ runner.os }}-static-assets-${{ hashFiles('apps/docs/static/**/*') }}
restore-keys: |
${{ runner.os }}-static-assets-
- uses: actions/cache@v4
id: build-cache
with:
path: |
apps/docs/build/~
apps/docs/.docusaurus
packages/docs-ui/dist
packages/types/dist
key: ${{ runner.os }}-docs-build-${{ hashFiles('apps/docs/**/*') }}
restore-keys: |
${{ runner.os }}-docs-build-
- uses: actions/cache@v4
id: turbo-cache
with:
path: .turbo
key: ${{ runner.os }}-turbo-${{ hashFiles('**/yarn.lock') }}
restore-keys: |
${{ runner.os }}-turbo-
- name: Node.js 20
uses: actions/setup-node@v3
with:
node-version: '20'
- name: Install Dependencies
run: yarn install --frozen-lockfile
- name: Run Build
run: yarn build