ci: better readability, parallel execution (build & test) #13772
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Continuous Integration | |
on: | |
push: | |
branches: [main] | |
pull_request: | |
branches: [main] | |
merge_group: | |
types: [checks_requested] | |
workflow_run: | |
workflows: ["Package"] | |
branches: [main] | |
types: | |
- completed | |
env: | |
BASE_URL: https://${{ github.event.pull_request.number || 'main' }}.development.scrumlr.fra.ics.inovex.io | |
concurrency: | |
group: ${{ github.ref }} | |
cancel-in-progress: true | |
jobs: | |
test-frontend: | |
name: Build and Test – Frontend | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v4 | |
- name: Get yarn cache directory path | |
id: yarn-cache-dir-path | |
run: echo "::set-output name=dir::$(yarn cache dir)" | |
- uses: actions/cache@v4 | |
id: yarn-cache | |
with: | |
path: ${{ steps.yarn-cache-dir-path.outputs.dir }} | |
key: ${{ runner.os }}-yarn-${{ hashFiles('**/yarn.lock') }} | |
restore-keys: | | |
${{ runner.os }}-yarn- | |
- name: Build client | |
run: | | |
yarn install | |
CI=false yarn build | |
- name: Lint code | |
run: yarn lint --max-warnings 0 | |
- name: Test with coverage | |
run: yarn test --coverage --watchAll=false --passWithNoTests | |
test-backend: | |
name: Build and Test – Backend | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- uses: actions/setup-go@v5 | |
with: | |
go-version: "^1.20" | |
cache-dependency-path: | | |
./server/src/go.sum | |
- name: Go lint | |
uses: golangci/golangci-lint-action@v4 | |
with: | |
version: v1.54 | |
working-directory: ./server/src/ | |
- name: Build server | |
working-directory: ./server | |
run: | | |
make test | |
make build-alpine | |
package: | |
needs: [test-frontend, test-backend] | |
uses: inovex/scrumlr.io/.github/workflows/package.yml@main | |
deploy_to_dev_cluster: | |
needs: package | |
if: ${{ github.event_name == 'pull_request' && github.event.pull_request.user.login != 'dependabot[bot]' || github.ref_name == 'main'}} | |
uses: inovex/scrumlr.io/.github/workflows/deploy_to_dev_cluster.yml@main | |
secrets: inherit | |
with: | |
frontend_image_tag: ${{ needs.package.outputs.frontend-image-tag }} | |
server_image_tag: ${{ needs.package.outputs.server-image-tag }} | |
deployment_health_check: | |
needs: deploy_to_dev_cluster | |
if: ${{ github.event_name == 'pull_request' && github.event.pull_request.user.login != 'dependabot[bot]' || github.ref_name == 'main'}} | |
runs-on: ubuntu-latest | |
steps: | |
- name: checkout | |
uses: actions/checkout@v4 | |
- name: reachability check | |
uses: ./.github/actions/deployment_health_check | |
with: | |
HEALTH_URL: ${{ env.BASE_URL}}/api/health | |
postman_tests: | |
if: ${{ github.event_name == 'pull_request' && github.event.pull_request.user.login != 'dependabot[bot]' }} | |
needs: deployment_health_check | |
runs-on: ubuntu-latest | |
steps: | |
- name: checkout | |
uses: actions/checkout@v4 | |
- name: Reachability check | |
uses: ./.github/actions/postman_run | |
with: | |
HEALTH_URL: ${{ env.BASE_URL}}/api/health | |
- name: Postman run | |
uses: ./.github/actions/postman_run | |
with: | |
POSTMAN_URL: ${{ env.BASE_URL}}/api | |
octomind_end_to_end_test: | |
name: Octomind End to End Test | |
if: ${{ github.event_name == 'pull_request' && github.event.pull_request.user.login != 'dependabot[bot]' }} | |
needs: deployment_health_check | |
runs-on: ubuntu-latest | |
steps: | |
- name: checkout | |
uses: actions/checkout@v4 | |
- name: reachability check | |
uses: ./.github/actions/deployment_health_check | |
with: | |
HEALTH_URL: ${{ env.BASE_URL}}/api/health | |
- name: run tests | |
uses: OctoMind-dev/automagically-action-execute@v2 | |
with: | |
url: https://${{ github.event.pull_request.number }}.development.scrumlr.fra.ics.inovex.io | |
token: ${{ secrets.AUTOMAGICALLY_TOKEN }} | |
testTargetId: ${{ secrets.AUTOMAGICALLY_TEST_TARGET_ID }} | |
cypress_end_to_end_test: | |
name: Cypress End to End Test | |
if: ${{ github.event_name == 'pull_request' && github.event.pull_request.user.login != 'dependabot[bot]' }} | |
needs: deployment_health_check | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Start server | |
run: docker-compose --profile build up -d | |
working-directory: server | |
- name: Setup client and run tests | |
uses: cypress-io/github-action@v6 | |
with: | |
browser: chrome | |
start: | | |
yarn install | |
yarn run start | |
working-directory: ./ | |
wait-on: 'http://localhost:3000' |