mirror of
https://github.com/versia-pub/api.git
synced 2025-12-06 08:28:19 +01:00
27 lines
391 B
YAML
27 lines
391 B
YAML
name: Run Tests
|
|
|
|
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: Install
|
|
run: bun install
|
|
|
|
- name: Test
|
|
run: bun run test
|