blob: 9273d721d5b5de45d2e79647ead9589e3762bc56 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
name: Test frontend
on:
workflow_dispatch:
jobs:
build:
name: build
runs-on: ubuntu-latest
steps:
- name: Checkout repo
uses: actions/checkout@v4
- name: Install bun
uses: oven-sh/setup-bun@v1
- name: Setup, check and test
working-directory: ./code/frontend
run: |
bun install
bun run check
bun run test
|