Skip to content

New Services

New Services #326

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
key: ${{ runner.os }}-node_modules-${{ hashFiles('**/yarn.lock') }}
restore-keys: |
${{ runner.os }}-node_modules-
- uses: actions/cache@v4
id: build-cache
with:
path: apps/docs/build/~
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