Skip to content

Update README.md

Update README.md #33

name: GitHub Pages
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
deploy:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup Node.js
uses: actions/setup-node@v3
with:
node-version: '20'
- name: Install dependencies
run: npm install
# - name: Run tests
# run: npm run test:headless
- name: Build
run: npm run build:prod -- --base-href /HypermediaUI/
- name: Deploy
if: success() && github.event_name != 'pull_request'
uses: peaceiris/actions-gh-pages@v3
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
publish_dir: dist/prod/browser
enable_jekyll: true