fix(deps): update dependency com.fasterxml.jackson:jackson-bom to v2.… #3038
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: test-codegen | |
on: | |
push: | |
branches: | |
- main | |
- renovate/** | |
pull_request: | |
branches: | |
- main | |
workflow_call: | |
jobs: | |
test-codegen: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Set up Node | |
uses: actions/setup-node@v4 | |
with: | |
node-version: 18 | |
cache: "npm" | |
- name: validate the json schemas | |
run: make validate | |
- name: Set up Ruby | |
uses: ruby/setup-ruby@v1 | |
with: | |
ruby-version: '3.1' | |
- name: generate code for all languages | |
run: | | |
make clean-all | |
make generate-all | |
- name: check the repo is still clean after generation | |
run: | | |
git status --porcelain | |
git diff HEAD | |
[ -z "$(git status --porcelain)" ] |