Skip to content

chore: fix release workflow #262

chore: fix release workflow

chore: fix release workflow #262

Workflow file for this run

name: Validate docs
on:
push:
branches: [ main ]
pull_request:
workflow_dispatch:
# Ensure that new pushes/updates cancel running jobs
concurrency:
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }}
cancel-in-progress: true
jobs:
build:
defaults:
run:
working-directory: docs
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Set up Node.js
uses: actions/setup-node@v4
# with:
# cache: yarn
- name: Install dependencies
run: yarn install --immutable
- name: Build
run: yarn build