mirror of
https://github.com/sysadminsmedia/homebox.git
synced 2025-12-26 07:13:37 +01:00
ci: end-to-end CI testing (#1)
* do end-to-end testing * set node version * build then start * remove test restrictions * panic if mime type fails * use timeout
This commit is contained in:
23
.github/workflows/frontend.yaml
vendored
23
.github/workflows/frontend.yaml
vendored
@@ -1,19 +1,25 @@
|
||||
on:
|
||||
push:
|
||||
branches: [main]
|
||||
paths:
|
||||
- "**.ts"
|
||||
- "**.vue"
|
||||
pull_request:
|
||||
branches: [main]
|
||||
paths:
|
||||
- "**.ts"
|
||||
- "**.vue"
|
||||
|
||||
jobs:
|
||||
Frontend:
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- name: Install Task
|
||||
uses: arduino/setup-task@v1
|
||||
|
||||
- name: Set up Go
|
||||
uses: actions/setup-go@v2
|
||||
with:
|
||||
go-version: 1.18
|
||||
|
||||
- uses: actions/setup-node@v3
|
||||
with:
|
||||
node-version: 18
|
||||
|
||||
- uses: pnpm/action-setup@v2.2.2
|
||||
with:
|
||||
version: 6.0.2
|
||||
@@ -27,6 +33,5 @@ jobs:
|
||||
run: pnpm install
|
||||
working-directory: frontend
|
||||
|
||||
- name: Vitest
|
||||
run: pnpm test:ci
|
||||
working-directory: frontend
|
||||
- name: Run Integration Tests
|
||||
run: task test:integration
|
||||
|
||||
5
.github/workflows/go.yaml
vendored
5
.github/workflows/go.yaml
vendored
@@ -3,12 +3,8 @@ name: Go Build/Test
|
||||
on:
|
||||
push:
|
||||
branches: [main]
|
||||
paths:
|
||||
- "**.go"
|
||||
pull_request:
|
||||
branches: [main]
|
||||
paths:
|
||||
- "**.go"
|
||||
|
||||
jobs:
|
||||
Go:
|
||||
@@ -31,6 +27,7 @@ jobs:
|
||||
version: latest
|
||||
|
||||
# Optional: working directory, useful for monorepos
|
||||
timeout: 5m
|
||||
working-directory: backend
|
||||
|
||||
- name: Build API
|
||||
|
||||
Reference in New Issue
Block a user