Files
thilalib/.gitea/workflows/test-build.yaml
Julien Valverdé a854a1fb57
Some checks failed
Lint / lint (push) Successful in 9s
Publish / lint (push) Failing after 12s
0.1.0 (#1)
Co-authored-by: Julien Valverdé <julien.valverde@mailo.com>
Reviewed-on: https://git.jvalver.de/Thilawyn/thilalib/pulls/1
2024-06-18 03:26:05 +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