Skip to content

feat: replace any type #898

feat: replace any type

feat: replace any type #898

Workflow file for this run

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