Skip to content

Updated dependencies #77

Updated dependencies

Updated dependencies #77

Workflow file for this run

name: Build and deploy to GitHub Pages
on:
push:
branches:
- "master"
jobs:
build:
runs-on: ubuntu-latest
permissions:
pages: write
id-token: write
environment:
name: github-pages
url: ${{ steps.deployment.outputs.page_url }}
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: 18
cache: 'npm'
- run: |
npm ci
npm run build
- uses: actions/upload-pages-artifact@v1
with:
path: "dist/"
- uses: actions/deploy-pages@v1