Skip to content
This repository was archived by the owner on Oct 21, 2025. It is now read-only.

Dependency(deps-dev): Bump lint-staged from 16.1.5 to 16.2.4 #788

Dependency(deps-dev): Bump lint-staged from 16.1.5 to 16.2.4

Dependency(deps-dev): Bump lint-staged from 16.1.5 to 16.2.4 #788

Workflow file for this run

name: Build using vite and deploy to GitHub Pages when on main
on:
- push
# Configures premissions for the used GitHub Token that are required for Pages.
permissions:
contents: read # To get the source
pages: write # To deploy to pages
id-token: write # To verify deployment (done automatically by the official action)
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v5
- name: Use Node.js 20.x
uses: actions/setup-node@v4
with:
node-version: 20.x
cache: npm
- name: Install dependencies
run: npm install
- name: Build project
run: npm run build
- name: Upload Pages artifact
if: github.ref == 'refs/heads/main'
uses: actions/upload-pages-artifact@v3
with:
path: "./dist/"
- name: Deploy to GitHub Pages
if: github.ref == 'refs/heads/main'
uses: actions/deploy-pages@v4