Skip to content

chore(deps-dev): bump eslint from 9.11.1 to 9.16.0 #561

chore(deps-dev): bump eslint from 9.11.1 to 9.16.0

chore(deps-dev): bump eslint from 9.11.1 to 9.16.0 #561

Workflow file for this run

name: github-pages
on: [push]
jobs:
build:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest]
node: [20]
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup node env
uses: actions/setup-node@v4.0.4
with:
node-version: ${{ matrix.node }}
- name: Install dependencies
run: npm i
- name: Build
run: npm run build
env:
NITRO_PRESET: github_pages
- name: Upload Output
uses: actions/upload-pages-artifact@v3
with:
# change to ./.output/public when really ready to deploy
path: ./.output/public
deploy:
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