Bump build/metaschema-xslt from 7d9fbfa
to a36144f
#213
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: OSCAL CI/CD | |
on: | |
push: | |
branches: | |
- main | |
- develop | |
- "feature-*" | |
- "release-*" | |
pull_request: | |
branches: | |
- main | |
- develop | |
- "feature-*" | |
- "release-*" | |
workflow_dispatch: | |
jobs: | |
checks: | |
name: Status Checks | |
runs-on: ubuntu-22.04 | |
steps: | |
- uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 | |
with: | |
submodules: recursive | |
- uses: actions/setup-java@v4 | |
with: | |
distribution: "temurin" | |
java-version: "17" | |
- uses: actions/setup-node@8f152de45cc393bb48ce5d89d36b731f54556e65 | |
with: | |
node-version-file: "build/.nvmrc" | |
cache: "npm" | |
cache-dependency-path: "build/package-lock.json" | |
- name: Install xmllint | |
run: sudo apt-get install -y libxml2-utils | |
- name: Run all pipelines | |
run: | | |
make --keep-going all | |
working-directory: build |