ci: add CI workflow configuration file #15

Merged
jank1619 merged 9 commits from ci/pipelines into main 2025-02-12 10:41:44 +00:00
Showing only changes of commit ac3c84106d - Show all commits

View File

@ -10,16 +10,23 @@ jobs:
container:
image: catthehacker/ubuntu:act-latest
steps:
- uses: actions/checkout@v4
- uses: oven-sh/setup-bun@v2
- uses: actions/cache@v4
- name: Checkout Code
uses: actions/checkout@v4
- name: Install bun
uses: oven-sh/setup-bun@v2
- name: Cache
uses: actions/cache@v4
with:
path: |
~/.npm
key: ${{ runner.os }}-bun-${{ hashFiles('**/package-lock.json') }}-${{ hashFiles('**/*.js', '**/*.jsx', '**/*.ts', '**/*.tsx') }}
restore-keys: |
${{ runner.os }}-bun-${{ hashFiles('**/package-lock.json') }}-
- run: |
- name: Install dependencies
run: |
cd frontend
bun install
- run: bun run build
- name: Test build
run: |
cd frontend
bun run build