Skip to content

Commit b9855ed

Browse files
authored
Merge pull request #1763 from Fryguy/github_actions2
More GitHub Actions changes
2 parents 053fa47 + 14b5568 commit b9855ed

File tree

2 files changed

+6
-2
lines changed

2 files changed

+6
-2
lines changed

.github/workflows/ci.yaml

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,12 +5,16 @@ on: [push, pull_request]
55
jobs:
66
ci:
77
runs-on: ubuntu-latest
8+
strategy:
9+
matrix:
10+
node-version:
11+
- 12
812
steps:
913
- uses: actions/checkout@v2
1014
- name: Set up Node
1115
uses: actions/setup-node@v2
1216
with:
13-
node-version: 12
17+
node-version: ${{ matrix.node-version }}
1418
cache: yarn
1519
registry-url: https://npm.manageiq.org/
1620
- name: Prepare tests

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# ManageIQ Service UI
22

3-
[![Build Status](https://travis-ci.com/ManageIQ/manageiq-ui-service.svg?branch=master)](https://travis-ci.com/github/ManageIQ/manageiq-ui-service)
3+
[![CI](https://github.com/ManageIQ/manageiq-ui-service/actions/workflows/ci.yaml/badge.svg)](https://github.com/ManageIQ/manageiq-ui-service/actions/workflows/ci.yaml)
44
[![Coverage Status](https://coveralls.io/repos/github/ManageIQ/manageiq-ui-service/badge.svg?branch=master)](https://coveralls.io/github/ManageIQ/manageiq-ui-service?branch=master)
55
[![Code Climate](https://codeclimate.com/github/ManageIQ/manageiq-ui-service/badges/gpa.svg)](https://codeclimate.com/github/ManageIQ/manageiq-ui-service)
66
[![Chat](https://badges.gitter.im/Join%20Chat.svg)](https://gitter.im/ManageIQ/manageiq-ui-service?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge)

0 commit comments

Comments
 (0)