Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 4 additions & 8 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
@@ -1,12 +1,11 @@
---
name: CI

on:
push:
pull_request:
workflow_dispatch:
schedule:
- cron: '0 0 * * *'

- cron: 0 0 * * *
jobs:
ci:
runs-on: ubuntu-latest
Expand All @@ -21,15 +20,12 @@ jobs:
- name: Set up Node
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
# TODO: Uncomment this for yarn 3
# cache: yarn
# registry-url: https://npm.manageiq.org/
node-version: "${{ matrix.node-version }}"
- 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 == '14' }}
if: "${{ github.ref == 'refs/heads/master' && matrix.node-version == '14' }}"
continue-on-error: true
run: scripts/.coverage.sh
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Angular UI Components for ManageIQ

[![CI](https://github.com/ManageIQ/ui-components/actions/workflows/ci.yaml/badge.svg)](https://github.com/ManageIQ/ui-components/actions/workflows/ci.yaml)
[![CI](https://github.com/ManageIQ/ui-components/actions/workflows/ci.yaml/badge.svg?branch=master)](https://github.com/ManageIQ/ui-components/actions/workflows/ci.yaml)
[![Coverage Status](https://coveralls.io/repos/github/ManageIQ/ui-components/badge.svg)](https://coveralls.io/github/ManageIQ/ui-components)
[![Chat](https://badges.gitter.im/Join%20Chat.svg)](https://gitter.im/ManageIQ/manageiq/ui?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge)

Expand Down