Skip to content

Alerts

Alerts #69

Workflow file for this run

name: Svelte Deployment
on:
push:
branches:
- main
pull_request:
release:
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v2
with:
node-version: 18
cache: "npm"
- uses: actions/cache@v3
with:
path: |
node_modules
key: ${{ runner.os }}-${{ hashFiles('package-lock.json') }}
- name: Install dependencies
run: npm ci
- name: Build Svelte
run: npm run build