Skip to content
This repository has been archived by the owner on Mar 31, 2024. It is now read-only.

Update tests.md

Update tests.md #14

Workflow file for this run

name: Deploy to GitHub Pages
on:
push:
branches:
- main
paths:
- "package.json"
- "yarn.lock"
- "docs/**"
- ".github/workflows/vitepress.yml"
jobs:
deploy:
runs-on: ubuntu-latest
permissions:
pages: write
id-token: write
environment:
name: github-pages
url: ${{ steps.deployment.outputs.page_url }}
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
- uses: actions/setup-node@v4
with:
node-version: 20
cache: yarn
- run: yarn install --frozen-lockfile
- name: Build
run: yarn run build
- uses: actions/configure-pages@v4
- uses: actions/upload-pages-artifact@v3
with:
path: docs/.vitepress/dist
- name: Deploy
id: deployment
uses: actions/deploy-pages@v4