Files
thilalib/.gitea/workflows/test-build.yaml
Julien Valverdé ffb4043c5f
All checks were successful
Lint / lint (push) Successful in 10s
CI work
2024-06-18 03:16:38 +02:00

24 lines
509 B
YAML

name: Test build
run-name: Test build
on:
pull_request:
jobs:
lint:
runs-on: ubuntu-latest
steps:
- name: Setup Bun
uses: oven-sh/setup-bun@v1
- name: Setup Node
uses: actions/setup-node@v4
with:
node-version: "20"
- name: Clone repo
uses: actions/checkout@v4
- name: Install dependencies
run: bun install --frozen-lockfile
- name: Build
run: npm run build
- name: Pack
run: npm pack --dry-run