Skip to content

improved contact as formatting #103

improved contact as formatting

improved contact as formatting #103

Workflow file for this run

name: CI
on:
push:
branches: ["master"]
pull_request:
branches: ["master"]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Install pnpm
uses: pnpm/action-setup@v4
with:
version: 10
- name: Set Node.js
uses: actions/setup-node@v3
with:
node-version: 24
cache: pnpm
- name: Install dependencies
run: pnpm install
- name: Build production bundle
run: pnpm build
- uses: actions/upload-pages-artifact@v3
with:
path: build
if-no-files-found: error
deploy:
if: ${{ github.event_name == 'push' }}
needs: build
permissions:
pages: write
id-token: write
environment:
name: github-pages
url: ${{ steps.deployment.outputs.page_url }}
runs-on: ubuntu-latest
steps:
- name: Deploy to GitHub Pages
id: deployment
uses: actions/deploy-pages@v4