Jan Klattenhoff 9a75be6862
All checks were successful
CI / prettier (pull_request) Successful in 17s
CI / test-build (pull_request) Successful in 34s
ci: remove caching from CI workflow configuration
2025-02-12 11:36:45 +01: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