Add URITokenIssuer in account_info #1213
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 using Docker | |
on: | |
push: | |
branches: [ "dev", "candidate", "release", "jshooks" ] | |
pull_request: | |
branches: [ "dev", "candidate", "release", "jshooks" ] | |
concurrency: | |
group: ${{ github.workflow }} | |
cancel-in-progress: false | |
jobs: | |
checkout: | |
runs-on: [self-hosted, vanity] | |
steps: | |
- uses: actions/checkout@v3 | |
with: | |
clean: false | |
checkpatterns: | |
runs-on: [self-hosted, vanity] | |
needs: checkout | |
steps: | |
- name: Check for suspicious patterns | |
run: /bin/bash suspicious_patterns.sh | |
build: | |
runs-on: [self-hosted, vanity] | |
needs: checkpatterns | |
steps: | |
- name: Build using Docker | |
run: /bin/bash release-builder.sh | |
tests: | |
runs-on: [self-hosted, vanity] | |
needs: build | |
steps: | |
- name: Unit tests | |
run: /bin/bash docker-unit-tests.sh | |