This repository was archived by the owner on Aug 17, 2026. It is now read-only.
chore(dev-deps): bump eslint-config-oclif from 6.0.167 to 6.0.179 #182
Workflow file for this run
This file contains hidden or 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 & Reports | |
| on: | |
| pull_request: | |
| types: [opened, synchronize, reopened] | |
| jobs: | |
| build-test: | |
| name: Build & Test | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout code | |
| uses: actions/checkout@v4 | |
| - name: Set up Node.js | |
| uses: actions/setup-node@v4 | |
| with: | |
| node-version: "22.x" | |
| - name: Install dependencies | |
| run: | | |
| npm install | |
| npm install -g @contentstack/cli | |
| - name: Configure Region | |
| run: csdx config:set:region AWS-NA | |
| - name: Run tests with coverage | |
| run: npm run test:unit:report:json | |
| - name: Test Report | |
| uses: dorny/test-reporter@v1 | |
| if: success() || failure() | |
| with: | |
| name: Mocha Unit Test | |
| path: report.json | |
| reporter: mocha-json | |
| - name: Coverage Report | |
| uses: lucassabreu/comment-coverage-clover@main | |
| with: | |
| file: coverage/clover.xml |