Skip to content

fix(vue-wizard): resolve remaining e2e test failures #193

fix(vue-wizard): resolve remaining e2e test failures

fix(vue-wizard): resolve remaining e2e test failures #193

Workflow file for this run

# @format
name: Deploy Docs to GitHub Pages
on:
push:
branches:
- main # Trigger on pushes to the main branch
jobs:
build-and-deploy:
runs-on: ubuntu-latest
permissions:
contents: write # Grant write permission to GITHUB_TOKEN
steps:
- name: Checkout repository
uses: actions/checkout@v3
- name: Setup Node.js
uses: actions/setup-node@v3
with:
node-version: '22' # Use a stable Node.js version
- name: Install dependencies
run: npm install
- name: Build Documentation
run: |
cd docs
npm install
npm run build
- name: Deploy to GitHub Pages
uses: peaceiris/actions-gh-pages@v3
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
publish_dir: ./docs/build # The directory containing your built documentation
# If you have a custom domain, uncomment and set:
# cname: example.com