js-core-1.8.5 - fix converters utils between inline and objects funct… #41
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: JavaScript json-transform-core Test | |
| on: | |
| push: | |
| branches: | |
| - main | |
| paths: | |
| - javascript/json-transform-core/** | |
| pull_request: | |
| branches: | |
| - main | |
| paths: | |
| - javascript/json-transform-core/** | |
| # cancel previous tests if new commit is pushed to PR branch | |
| concurrency: | |
| group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }} | |
| cancel-in-progress: true | |
| jobs: | |
| test: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: setup json-transform-core build | |
| uses: actions/setup-node@v4 | |
| with: | |
| node-version: 20 | |
| cache: npm | |
| cache-dependency-path: ./javascript/json-transform-core/package-lock.json | |
| - name: install json-transform-core dependencies | |
| working-directory: ./javascript/json-transform-core | |
| run: npm ci | |
| - name: test json-transform-core | |
| working-directory: ./javascript/json-transform-core | |
| run: npm test |