Skip to content

Bump clsx from 1.2.1 to 2.1.0 #10

Bump clsx from 1.2.1 to 2.1.0

Bump clsx from 1.2.1 to 2.1.0 #10

Workflow file for this run

name: Docusaurus CI/CD Workflow
on:
push:
branches:
- trunk
pull_request:
branches:
- trunk
workflow_dispatch:
jobs:
test-deploy:
name: Test Deployment
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v3
- name: Setup Node.js Version 18
uses: actions/setup-node@v3
with:
node-version: '18.x'
cache: yarn
- name: Install dependencies
run: yarn install --frozen-lockfile
- name: Test build website
run: yarn build
deploy:
name: Deploy to GitHub Pages
runs-on: ubuntu-latest
needs: test-deploy
if: github.ref == 'refs/heads/trunk'
steps:
- name: Checkout code
uses: actions/checkout@v3
- name: Setup Node.js Version 18
uses: actions/setup-node@v3
with:
node-version: '18.x'
cache: yarn
- name: Install dependencies
run: yarn install --frozen-lockfile
- name: Build website
run: yarn build
- name: Deploy to GitHub Pages
uses: peaceiris/actions-gh-pages@v3
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
publish_dir: ./build
user_name: github-actions[bot]
user_email: 41898282+github-actions[bot]@users.noreply.github.com