Skip to content
This repository was archived by the owner on Sep 29, 2023. It is now read-only.

Commit 133f9ec

Browse files
committed
Migrate to GitHub Actions
1 parent b94b7cc commit 133f9ec

File tree

2 files changed

+27
-1
lines changed

2 files changed

+27
-1
lines changed

.github/workflows/ci.yml

Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
name: ci
2+
3+
on:
4+
push:
5+
branches: [ master ]
6+
pull_request:
7+
branches: [ master ]
8+
9+
jobs:
10+
build:
11+
12+
runs-on: ubuntu-latest
13+
14+
strategy:
15+
matrix:
16+
node-version: [10.x, 12.x, 14.x, 15.x]
17+
18+
steps:
19+
- uses: actions/checkout@v2
20+
- name: Use Node.js ${{ matrix.node-version }}
21+
uses: actions/setup-node@v1
22+
with:
23+
node-version: ${{ matrix.node-version }}
24+
- run: npm install
25+
- run: npm run build
26+
- run: npm test

README.md

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

3-
[![Build Status](https://travis-ci.org/nativefier/gitcloud-client.svg?branch=master)](https://travis-ci.org/nativefier/gitcloud-client)
3+
[![Build Status](https://github.com/nativefier/gitcloud-client/workflows/ci/badge.svg)](https://github.com/nativefier/gitcloud-client/actions?query=workflow%3Aci)
44

55
## Installation
66

0 commit comments

Comments
 (0)