Update dependency c3 to ^0.7.0 - autoclosed #1395
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
| --- | |
| name: CI | |
| on: | |
| push: | |
| pull_request: | |
| workflow_dispatch: | |
| schedule: | |
| - cron: 0 0 * * * | |
| jobs: | |
| ci: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Set up system | |
| run: bin/before_install | |
| - name: Set up Node | |
| uses: actions/setup-node@v5 | |
| with: | |
| node-version-file: package.json | |
| cache: yarn | |
| registry-url: https://npm.manageiq.org/ | |
| - name: Prepare tests | |
| run: bin/setup | |
| - name: Run tests | |
| run: bin/ci | |
| - name: Report code coverage | |
| if: "${{ github.ref == 'refs/heads/master' && matrix.node-version == '20' }}" | |
| continue-on-error: true | |
| run: scripts/.coverage.sh |