Files
SvelteKit-Test/.gitea/workflows/deploy.yml
T
Torben Schaffhauser f79775bea3
Build Test / build (push) Failing after 15s
Test action
2026-06-27 18:29:46 +02:00

25 lines
375 B
YAML

name: Build Test
on:
push:
branches:
- main
jobs:
build:
runs-on: Runner
container:
image: node:22-bookworm
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Enable Corepack
run: corepack enable
- name: Install dependencies
run: npm ci
- name: Build
run: time npm run build