Skip to content

Merge pull request #6 from SvMak/main #28

Merge pull request #6 from SvMak/main

Merge pull request #6 from SvMak/main #28

Workflow file for this run

name: build
on:
push:
branches:
- main
pull_request:
branches:
- main
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
- name: Build SvelteKit application
run: npm run build
- name: Archive build artifacts
uses: actions/upload-artifact@v2
with:
name: build-artifacts
path: build