Extend authorized parties with instance delegations #1130
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: "Run Bruno tests" | |
on: | |
push: | |
branches: [ main ] | |
pull_request: | |
branches: [ main ] | |
types: [opened, synchronize, reopened] | |
jobs: | |
bruno: | |
name: Bruno | |
runs-on: ubuntu-latest | |
permissions: | |
contents: read | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v4 | |
- name: Setup node | |
uses: actions/setup-node@v4 | |
with: | |
node-version: 21.x | |
- name: Install bruno | |
run: npm install --global @usebruno/cli@1.x | |
- name: Run automatic tests against AT22 | |
working-directory: test/Bruno/Altinn.AccessManagement | |
run: bru run "Automatic Test Collection" -r --env AT22 | |
env: | |
TOKEN_BASIC_AUTH_USER: ${{ secrets.BRUNO_TOKEN_BASIC_AUTH_USER }} | |
TOKEN_BASIC_AUTH_PW: ${{ secrets.BRUNO_TOKEN_BASIC_AUTH_PW }} |