mirror of
https://github.com/versia-pub/api.git
synced 2025-12-06 16:38:20 +01:00
24 lines
361 B
YAML
24 lines
361 B
YAML
name: Test Build
|
|
|
|
on:
|
|
push:
|
|
|
|
permissions:
|
|
contents: read
|
|
# For provenance generation
|
|
id-token: write
|
|
|
|
jobs:
|
|
# Build job
|
|
build:
|
|
runs-on: ubuntu-latest
|
|
environment: NPM Deploy
|
|
steps:
|
|
- name: Checkout
|
|
uses: actions/checkout@v4
|
|
|
|
- uses: oven-sh/setup-bun@v2
|
|
|
|
- name: Build
|
|
run: bun install && bun run build
|