Skip to content

chore(deps-dev): bump express from 4.18.2 to 4.19.2 #491

chore(deps-dev): bump express from 4.18.2 to 4.19.2

chore(deps-dev): bump express from 4.18.2 to 4.19.2 #491

Workflow file for this run

name: Build example page
permissions:
contents: write
on:
workflow_dispatch:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [20.x]
steps:
- uses: actions/checkout@v4
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
- name: Build production assets
run: |
npm install
npm run prod --if-present
- name: Store artifacts
uses: actions/upload-artifact@v4
with:
name: build-site
path: dist
- name: Build GitHub Pages
uses: crazy-max/ghaction-github-pages@v4.0.0
with:
build_dir: dist
jekyll: false
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}