mirror of
https://github.com/amir20/dozzle.git
synced 2025-12-24 22:39:18 +01:00
117 lines
3.3 KiB
YAML
117 lines
3.3 KiB
YAML
on:
|
|
push:
|
|
tags:
|
|
- "v*"
|
|
name: Test and Release
|
|
jobs:
|
|
npm-test:
|
|
name: JavaScript Tests
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v3
|
|
- uses: actions/setup-node@v3
|
|
name: Install Node
|
|
with:
|
|
node-version: latest
|
|
- run: corepack enable
|
|
- run: pnpm --version
|
|
- uses: actions/setup-node@v3
|
|
with:
|
|
node-version: latest
|
|
cache: "pnpm"
|
|
cache-dependency-path: "**/pnpm-lock.yaml"
|
|
- name: Install dependencies
|
|
run: pnpm install --frozen-lockfile --prefer-offline
|
|
- name: Run Tests
|
|
run: pnpm run test -- --outputTruncateLength=500
|
|
go-test:
|
|
name: Go Tests
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: Install Go
|
|
uses: actions/setup-go@v4
|
|
with:
|
|
go-version: 1.20.x
|
|
- name: Checkout code
|
|
uses: actions/checkout@v3
|
|
- name: Run Go Tests with Coverage
|
|
run: make test SKIP_ASSET=1
|
|
int-test:
|
|
name: Integration Tests
|
|
timeout-minutes: 60
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v3
|
|
- uses: actions/setup-node@v3
|
|
name: Install Node
|
|
with:
|
|
node-version: latest
|
|
- run: corepack enable
|
|
- run: pnpm --version
|
|
- uses: actions/setup-node@v3
|
|
with:
|
|
node-version: latest
|
|
cache: "pnpm"
|
|
cache-dependency-path: "**/pnpm-lock.yaml"
|
|
- name: Install dependencies
|
|
run: pnpm install
|
|
- name: Set up Docker Buildx
|
|
uses: docker/setup-buildx-action@v2
|
|
- name: Build
|
|
uses: docker/bake-action@v3
|
|
with:
|
|
load: true
|
|
set: |
|
|
*.cache-from=type=gha
|
|
*.cache-to=type=gha,mode=max
|
|
- name: Run Playwright tests
|
|
run: docker compose up --exit-code-from playwright
|
|
- uses: actions/upload-artifact@v3
|
|
if: always()
|
|
with:
|
|
name: playwright-report
|
|
path: playwright-report/
|
|
retention-days: 30
|
|
buildx:
|
|
needs: [go-test, npm-test, int-test]
|
|
name: Release
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: Docker meta
|
|
id: meta
|
|
uses: docker/metadata-action@v4
|
|
with:
|
|
images: amir20/dozzle
|
|
- name: Set up Docker Buildx
|
|
uses: docker/setup-buildx-action@v2.5.0
|
|
- name: Login to DockerHub
|
|
uses: docker/login-action@v2.1.0
|
|
with:
|
|
username: ${{ secrets.DOCKER_USERNAME }}
|
|
password: ${{ secrets.DOCKER_PASSWORD }}
|
|
- name: Build and push
|
|
uses: docker/build-push-action@v4.0.0
|
|
with:
|
|
push: true
|
|
platforms: linux/amd64,linux/arm/v7,linux/arm64/v8
|
|
tags: ${{ steps.meta.outputs.tags }}
|
|
build-args: TAG=${{ steps.meta.outputs.version }}
|
|
labels: ${{ steps.meta.outputs.labels }}
|
|
cache-from: type=gha
|
|
cache-to: type=gha,mode=max
|
|
git-release:
|
|
needs: [buildx]
|
|
name: Github Release
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: Checkout code
|
|
uses: actions/checkout@v3
|
|
with:
|
|
fetch-depth: 0
|
|
- name: Install Node
|
|
uses: actions/setup-node@v3
|
|
- name: Release to Github
|
|
env:
|
|
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
|
run: npx changelogithub
|