Bump @rushstack/eslint-patch from 1.14.1 to 1.15.0 in /openc3-cosmos-init/plugins #2335
Workflow file for this run
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
| # This workflow uses actions that are not certified by GitHub. | |
| # They are provided by a third-party and are governed by | |
| # separate terms of service, privacy policy, and support | |
| # documentation. | |
| name: Build UBI | |
| # Only run on a push to main to avoid running for all the dependabot PRs | |
| on: | |
| push: | |
| branches: | |
| - main | |
| pull_request: | |
| branches: | |
| - "**" | |
| jobs: | |
| openc3-build-ubi: | |
| if: ${{ github.actor != 'dependabot[bot]' }} | |
| runs-on: ubuntu-latest | |
| strategy: | |
| fail-fast: false | |
| steps: | |
| - uses: actions/checkout@v5 | |
| - uses: actions/setup-node@v6 | |
| with: | |
| node-version: 22 | |
| - name: login to ironbank | |
| # This `shell` line is required to get around a known issue: https://github.com/actions/runner/issues/241#issuecomment-745902718 | |
| shell: 'script -q -e -c "bash {0}"' | |
| run: echo ${{ secrets.IRONBANK_REGISTRY_CLI }} | docker login registry1.dso.mil -u jmthomas --password-stdin | |
| - name: openc3.sh build-ubi | |
| # This `shell` line is required to get around a known issue: https://github.com/actions/runner/issues/241#issuecomment-745902718 | |
| shell: 'script -q -e -c "bash {0}"' | |
| run: ./openc3.sh build-ubi | |
| - name: openc3.sh run-ubi | |
| shell: 'script -q -e -c "bash {0}"' | |
| run: ./openc3.sh run-ubi | |
| # Allow the containers to spin up | |
| - name: Sleep for 3min | |
| run: sleep 180s | |
| shell: bash | |
| # Check container status | |
| - name: Check container status | |
| shell: bash | |
| run: | | |
| docker ps | |
| docker logs cosmos-openc3-cosmos-init-1 | |
| docker logs cosmos-openc3-operator-1 | |
| docker ps | grep -Fv -e Restarting |