Skip to content

WAXJS - Managing temporary accounts #29

WAXJS - Managing temporary accounts

WAXJS - Managing temporary accounts #29

Workflow file for this run

# Sample workflow for building a VitePress site to GitHub Pages
name: VitePress CI
on:
# Runs on pushes targeting the `main` branch. Change this to `master` if you're
# using the `master` branch as the default branch.on:
pull_request:
types: [opened, reopened, synchronize, ready_for_review]
# Allows you to run this workflow manually from the Actions tab
workflow_dispatch:
# Allow only one concurrent deployment, skipping runs queued between the run in-progress and latest queued.
# However, do NOT cancel in-progress runs as we want to allow these production deployments to complete.
concurrency:
group: pages${{ github.workflow }}
cancel-in-progress: true
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Setup Node
uses: actions/setup-node@v4
with:
node-version: 20
- name: Install dependencies
run: npm ci
- name: Build with VitePress
run: npm run docs:build