Add test to testing framework for the OIDC Authorization Code Flow #119
Workflow file for this run
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
name: Docker Image CI | |
on: | |
push: | |
branches: [ master, develop ] | |
pull_request: | |
branches: [ master, develop ] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
# with: | |
# ref: ${{ github.ref_name }} | |
- name: Install docker-compose | |
uses: KengoTODA/actions-setup-docker-compose@v1 | |
with: | |
version: '2.14.2' | |
# env: | |
# GITHUB_TOKEN: ${{ secrets.GH_TOKEN }} | |
- name: build | |
run: CONFIG_FILE=./env/local.js docker-compose build |