Skip to content

Bump happy-dom from 20.8.3 to 20.8.8 (#495) #104

Bump happy-dom from 20.8.3 to 20.8.8 (#495)

Bump happy-dom from 20.8.3 to 20.8.8 (#495) #104

Workflow file for this run

name: Deploy to GitHub Pages
on:
push:
branches: [main]
workflow_run:
workflows: [Update Questions]
types:
- completed
workflow_dispatch:
permissions:
contents: write
jobs:
deploy:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: 22
cache: npm
- run: npm ci
- name: Build
env:
NEXT_PUBLIC_BASE_PATH: /leetcode-patterns
NEXT_PUBLIC_SUPABASE_URL: ${{ secrets.NEXT_PUBLIC_SUPABASE_URL }}
NEXT_PUBLIC_SUPABASE_ANON_KEY: ${{ secrets.NEXT_PUBLIC_SUPABASE_ANON_KEY }}
run: npm run build
- uses: JamesIves/github-pages-deploy-action@v4
with:
folder: out
branch: gh-pages
clean-exclude: pr-preview
force: false