HPCC-31294 Refactor the way job ids are passed to the logging #13265
Workflow file for this run
This file contains 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: Build Test ECL Watch | |
on: | |
pull_request: | |
branches: | |
- "master" | |
- "candidate-*" | |
- "!candidate-7.6.*" | |
- "!candidate-7.4.*" | |
- "!candidate-7.2.*" | |
- "!candidate-7.0.*" | |
- "!candidate-6.*" | |
jobs: | |
pre_job: | |
runs-on: ubuntu-20.04 | |
outputs: | |
eclwatch: ${{ steps.skip_check.outputs.eclwatch }} | |
steps: | |
- id: skip_check | |
uses: hpcc-systems/github-actions/changed-modules@main | |
with: | |
github_token: ${{ github.token }} | |
build: | |
strategy: | |
matrix: | |
node: ["20", "18", "16"] | |
fail-fast: false | |
name: "Check eclwatch and npm" | |
needs: pre_job | |
if: ${{ needs.pre_job.outputs.eclwatch }} | |
runs-on: ubuntu-20.04 | |
steps: | |
- uses: actions/checkout@v2 | |
with: | |
submodules: "recursive" | |
- uses: actions/setup-node@v2 | |
with: | |
node-version: ${{ matrix.node }} | |
- name: Install Dependencies | |
working-directory: ./esp/src | |
run: npm ci | |
- name: Build | |
working-directory: ./esp/src | |
run: npm run build | |
- name: Test | |
working-directory: ./esp/src | |
run: npm run test |