Bump the all-npm-dependencies group with 11 updates #125
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: Main workflow | |
on: | |
- pull_request | |
- push | |
jobs: | |
test: | |
strategy: | |
fail-fast: false | |
matrix: | |
os: | |
- ubuntu-latest | |
runs-on: ${{ matrix.os }} | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v3 | |
- name: test yaml | |
id: myyaml | |
uses: ./ | |
with: | |
file: testfile.yaml | |
directory: tests | |
validate_keys: | | |
$.service.port | |
$.service.type | |
$.ingress.external | |
- name: print value | |
run: | |
echo "EXTRACTED ${{ fromJSON(steps.myyaml.outputs.content).service.port }}" | |
- name: print array value | |
run: | |
echo "EXTRACTED ${{ fromJSON(steps.myyaml.outputs.content).jobs[2].name }}" | |