Rework ActionsPieChart with dynamic color palettes #29
This file contains hidden or 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
| { | |
| "jobs": { | |
| "build_and_test": { | |
| "name": "Build and test frontend", | |
| "runs-on": "ubuntu-24.04-arm", | |
| "steps": [ | |
| { | |
| "name": "Check out source code", | |
| "uses": "actions/checkout@v4" | |
| }, | |
| { | |
| "name": "Build docker image", | |
| "uses": "docker/build-push-action@v4", | |
| "with": { | |
| "context": "frontend/", | |
| "file": "./frontend/Dockerfile", | |
| "push": false, | |
| "tags": "ghcr.io/buildbarn/bb-portal-frontend" | |
| } | |
| } | |
| ] | |
| } | |
| }, | |
| "name": "Build and test frontend", | |
| "on": { | |
| "pull_request": { | |
| "branches": [ | |
| "main" | |
| ] | |
| }, | |
| "push": { | |
| "branches": [ | |
| "main" | |
| ] | |
| } | |
| } | |
| } |