2022-09-09 21:14:31 +00:00
|
|
|
name: Pull Request CI
|
|
|
|
|
|
|
|
on:
|
|
|
|
pull_request:
|
|
|
|
branches:
|
|
|
|
- main
|
|
|
|
|
|
|
|
jobs:
|
|
|
|
backend-tests:
|
|
|
|
name: "Backend Server Tests"
|
2022-10-30 02:15:35 +00:00
|
|
|
uses: ./.github/workflows/partial-backend.yaml
|
2022-09-09 21:14:31 +00:00
|
|
|
|
|
|
|
frontend-tests:
|
|
|
|
name: "Frontend and End-to-End Tests"
|
2022-10-30 02:15:35 +00:00
|
|
|
uses: ./.github/workflows/partial-frontend.yaml
|
2023-03-22 17:03:19 +00:00
|
|
|
|
|
|
|
releaser:
|
|
|
|
name: "Cross Compile and Release"
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
container:
|
|
|
|
image: goreleaser/goreleaser:v1.20
|
|
|
|
|
|
|
|
steps:
|
|
|
|
- name: Checkout
|
|
|
|
uses: actions/checkout@v3
|
|
|
|
with:
|
|
|
|
fetch-depth: 0
|
|
|
|
|
|
|
|
- name: "Cross Compile and Release"
|
|
|
|
run: goreleaser releaser --snapshot --clean --skip-publish
|