Skip to content

ci(github-actions): bump actions/setup-node from 4 to 5 (#157) #69

ci(github-actions): bump actions/setup-node from 4 to 5 (#157)

ci(github-actions): bump actions/setup-node from 4 to 5 (#157) #69

Workflow file for this run

name: "Deploy to GH pages"
on:
push:
branches: [main]
env:
HUSKY_SKIP: true
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [20.x]
steps:
- uses: actions/checkout@v5
- uses: actions/setup-node@v5
with:
node-version: ${{ matrix.node-version }}
- name: Install dependencies
run: npm install
- name: Build and validate all steps
run: node tools/builder
- name: Deploy to GH pages
uses: peaceiris/actions-gh-pages@v4
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
publish_dir: ./dist
force_orphan: true
enable_jekyll: true