Skip to content

CI

CI #2492

Workflow file for this run

name: CI
on:
pull_request:
push:
branches-ignore:
- dependabot/*
- renovate/*
schedule:
- cron: 0 0 * * *
workflow_dispatch:
concurrency:
group: "${{ github.workflow }}-${{ github.ref }}"
cancel-in-progress: true
permissions:
contents: read
jobs:
ci:
runs-on: ubuntu-latest
strategy:
matrix:
test-suite:
- test
- test:security
steps:
- uses: actions/checkout@v6
- name: Set up system
run: bin/before_install
- name: Set up Node
uses: actions/setup-node@v6
with:
node-version-file: package.json
cache: "${{ !env.ACT && 'yarn' || '' }}"
registry-url: https://npm.manageiq.org/
- name: Prepare tests
run: bin/setup
- name: Run tests
run: yarn run ${{ matrix.test-suite }}
- name: Report code coverage
if: "${{ github.ref == 'refs/heads/master' && matrix.test-suite != 'test:security' }}"
continue-on-error: true
run: cat reports/coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js