Jan Klattenhoff 2d955eed1a
All checks were successful
CI / prettier (pull_request) Successful in 16s
CI / test-build (pull_request) Successful in 34s
ci: remove caching from CI workflow configuration
2025-02-12 10:38:17 +00:00

44 lines
897 B
YAML

name: CI
on:
pull_request:
jobs:
prettier:
name: prettier
runs-on: vps-4
container:
image: catthehacker/ubuntu:act-latest
steps:
- name: Checkout Code
uses: actions/checkout@v4
- name: Install bun
uses: oven-sh/setup-bun@v2
- name: Install dependencies
run: |
cd frontend
bun install
- name: Run prettier
run: |
cd frontend
bun run format:check
test-build:
name: test-build
runs-on: vps-4
container:
image: catthehacker/ubuntu:act-latest
steps:
- name: Checkout Code
uses: actions/checkout@v4
- name: Install bun
uses: oven-sh/setup-bun@v2
- name: Install dependencies
run: |
cd frontend
bun install
- name: Test build
run: |
cd frontend
bun run build