Skip to content

feat(security portal): new handler to preserve tokens in config.json #770

feat(security portal): new handler to preserve tokens in config.json

feat(security portal): new handler to preserve tokens in config.json #770

Workflow file for this run

name: PR tests
on:
pull_request:
types: [opened, edited, synchronize]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Setup .NET Core SDKs
uses: actions/setup-dotnet@v4
with:
dotnet-version: |
6.0.x
8.0.x
- name: Setup node versions
uses: actions/setup-node@v2
with:
node-version: '12'
- name: Install dependencies
run: dotnet restore
- name: Build
run: dotnet build --configuration Release --no-restore
- name: Test
run: dotnet test --no-restore --verbosity normal --filter "TestCategory!=Internal"