Skip to content

updated management token expiry value #486

updated management token expiry value

updated management token expiry value #486

Workflow file for this run

name: Unit Test & Reports
on:
pull_request:
branches:
- master
- main
- next
jobs:
build-test:
name: Build & Test
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2 # checkout the repo
- uses: actions/setup-node@v3
with:
node-version: '22.x'
registry-url: 'https://registry.npmjs.org'
- run: npm ci # install packages
- run: npm run test:unit:report:json # run tests (configured to use jest-junit reporter)
- name: Test Report
uses: dorny/test-reporter@v1
if: success() || failure() # run this step even if previous step failed
with:
name: Mocha Unit test # Name of the check run which will be created
path: report.json # Path to test results
reporter: mocha-json # Format of test results
- name: Coverage report
uses: lucassabreu/comment-coverage-clover@main
with:
file: coverage/clover.xml