feat: adds login with auth0 #5
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: Build and Run Tests | |
on: | |
pull_request: | |
branches: | |
- main | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Build Golang Rest Backend Docker image | |
run: docker build -t backend-golang-rest backend-golang-rest | |
- name: Build React WebApp Docker image | |
run: docker build -t webapp-react webapp-react |