Skip to content

TIP-48663: Update happy-dom to fix security vulnerability; fix tests … #5

TIP-48663: Update happy-dom to fix security vulnerability; fix tests …

TIP-48663: Update happy-dom to fix security vulnerability; fix tests … #5

Workflow file for this run

name: Deploy to GitHub Pages
on:
push:
branches: [main]
workflow_dispatch:
permissions:
contents: write
jobs:
build-and-deploy:
runs-on: ubuntu-latest
steps:
- name: Checkout the repository
uses: actions/checkout@v3
- name: Setup Node.js
uses: actions/setup-node@v3
with:
node-version: "20"
- name: Install dependencies
run: npm ci
- name: Configure Git for gh-pages
run: |
git config user.email "bwell-dev@icanbwell.com"
git config user.name "bwell-dev"
git remote set-url origin https://x-access-token:${{ secrets.GITHUB_TOKEN }}@github.com/$GITHUB_REPOSITORY
- name: Build and Deploy
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
run: npm run deploy