Skip to content

fix(deps): update docusaurus monorepo to v2.4.3 (#702) #2505

fix(deps): update docusaurus monorepo to v2.4.3 (#702)

fix(deps): update docusaurus monorepo to v2.4.3 (#702) #2505

Workflow file for this run

name: Node.js CI
on: [push, pull_request]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Setup Node.js
uses: actions/setup-node@v3
with:
# Use same version of node for netlify and CI build
node-version-file: '.nvmrc'
cache: 'npm'
- run: npm ci
- name: Lint 🧶
run: npm run lint
- name: Build 🏗️
run: npm run build
# Build is separate deployment on develop branch
if: ${{ github.ref != 'refs/heads/develop' }}