Skip to content

Bump express from 4.18.3 to 4.19.2 in /typescript (#224) #171

Bump express from 4.18.3 to 4.19.2 in /typescript (#224)

Bump express from 4.18.3 to 4.19.2 in /typescript (#224) #171

Workflow file for this run

name: Deploy to GitHub Pages
on:
push:
branches:
- main
permissions:
contents: read
id-token: write
pages: write
jobs:
deploy:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
with:
fetch-depth: 0
- name: Use Node.js
uses: actions/setup-node@v3
with:
node-version: 18.x
cache: 'npm'
cache-dependency-path: "site/package-lock.json"
- name: Build site
run: |
cd site
echo "Building the site"
npm ci
npm run build
- name : Upload artifact
uses: actions/upload-pages-artifact@v2
with:
name: github-pages
path: site/_site
- name: Deploy to GitHub Pages from artifacts
uses: actions/deploy-pages@v2