js-1.7.0 js-core-1.7.1 java-1.1.0 monaco-1.2.1 - add functions some a… #33
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 Test | |
| on: | |
| push: | |
| branches: | |
| - main | |
| paths: | |
| - javascript/json-transform/** | |
| pull_request: | |
| branches: | |
| - main | |
| paths: | |
| - javascript/json-transform/** | |
| # 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 build | |
| uses: actions/setup-node@v4 | |
| with: | |
| node-version: 20 | |
| cache: npm | |
| cache-dependency-path: ./javascript/json-transform/package-lock.json | |
| - name: install json-transform dependencies | |
| working-directory: ./javascript/json-transform | |
| run: npm ci | |
| - name: test json-transform | |
| working-directory: ./javascript/json-transform | |
| run: npm test |