-
Notifications
You must be signed in to change notification settings - Fork 4
39 lines (31 loc) · 990 Bytes
/
test.yaml
File metadata and controls
39 lines (31 loc) · 990 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
name: Test Workflow
on:
push:
branches: [main]
pull_request:
workflow_dispatch:
jobs:
test:
if: ${{ github.event_name != 'pull_request' || github.event.pull_request.draft == false }}
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v5
- name: Install pnpm
uses: pnpm/action-setup@v5
with:
version: 10
- name: Use Node.js
uses: actions/setup-node@v5
with:
node-version: 24.14.0
cache: 'pnpm'
- name: Install Dependencies
run: pnpm i
- name: Generate SvelteKit config
run: pnpm svelte-kit sync
- name: Update and Test database
env:
DB_URL: file:database/local.db
DB_VISITS_URL: file:database/visits.db
run: pnpm db:update