Skip to content

Typecheck svelte config #85

Typecheck svelte config

Typecheck svelte config #85

Workflow file for this run

name: Deploy to Github Pages
env:
NODE_VERSION: 20
on:
push:
branches: master
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
permissions:
contents: read
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Using node v${{ env.NODE_VERSION }}
uses: actions/setup-node@v4
with:
node-version: ${{env.NODE_VERSION}}
cache: npm
- name: NPM Install
run: npm ci
env:
CYPRESS_INSTALL_BINARY: 0
- name: Build Site
run: npm run build:demo
- name: Upload artifact
uses: actions/upload-pages-artifact@v1
with:
path: ./build
deploy:
needs: build
runs-on: ubuntu-latest
permissions:
pages: write
id-token: write
environment:
name: github-pages
url: ${{ steps.deployment.outputs.page_url }}
steps:
- name: Deploy to GitHub Pages
id: deployment
uses: actions/deploy-pages@v2