Skip to content

Bump vite from 4.5.3 to 4.5.5 in /website in the npm_and_yarn group a… #17

Bump vite from 4.5.3 to 4.5.5 in /website in the npm_and_yarn group a…

Bump vite from 4.5.3 to 4.5.5 in /website in the npm_and_yarn group a… #17

Workflow file for this run

name: build
on:
push:
branches:
- master
paths:
- "website/**"
pull_request:
branches:
- master
paths:
- "website/**"
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v2
- name: Set up Node.js
uses: actions/setup-node@v4
with:
node-version: "18"
- name: Install dependencies
run: npm install
working-directory: website
- name: Build SvelteKit application
run: npm run build
working-directory: website
- name: Archive build artifacts
uses: actions/upload-artifact@v2
with:
name: build-artifacts
path: website/build