refactor(envited.ascs.digital): add debug log #931
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: Unit test workflow | |
on: | |
push: | |
branches: | |
- '**' # Run on any branch | |
# Concurrency group name ensures concurrent workflow runs wait for any in-progress job to finish | |
concurrency: | |
group: merge-${{ github.ref }} | |
permissions: | |
id-token: write # This is required for requesting the JWT | |
contents: read # This is required for actions/checkout | |
jobs: | |
TestApp: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/setup-node@v4 | |
with: | |
node-version: 18 | |
- name: Git clone the repository | |
uses: actions/checkout@v3 | |
- name: Test app | |
run: | | |
npm ci --force | |
npx nx run-many -t test --exclude ory-hydra |