Skip to content

Commit a5665da

Browse files
committed
prefer "github actions" to "travis ci"
1 parent f1c5a56 commit a5665da

File tree

3 files changed

+21
-63
lines changed

3 files changed

+21
-63
lines changed

.github/workflows/main.yml

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
name: "GitHub Actions CI"
2+
on: { push: { branches: [ master ] }, pull_request: { branches: [ master ] } }
3+
jobs:
4+
lib:
5+
if: github.event_name == 'push'
6+
strategy: { matrix: { os: [ ubuntu-20.04, windows-2019, macos-10.15 ], node: [ 10, 12, 14, 15 ] }, fail-fast: false }
7+
runs-on: ${{ matrix.os }}
8+
steps:
9+
- { uses: actions/setup-node@v1, with: { node-version: "${{ matrix.node }}" } }
10+
- { uses: actions/checkout@v2 }
11+
- name: lib
12+
run: |
13+
node --version
14+
npm --version
15+
yarn --version
16+
npx envinfo
17+
yarn --pure-lockfile --network-timeout 60000
18+
yarn add rxjs@6
19+
yarn add electron@12
20+
yarn run lib

.travis.yml

Lines changed: 0 additions & 62 deletions
This file was deleted.

README.md

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

3-
[![Build Status](https://travis-ci.org/vladimiry/electron-rpc-api.svg?branch=master)](https://travis-ci.org/vladimiry/electron-rpc-api)
3+
[![GitHub Actions CI](https://github.com/vladimiry/electron-rpc-api/workflows/GitHub%20Actions%20CI/badge.svg?branch=master)](https://github.com/vladimiry/electron-rpc-api/actions)
44

55
Is a wrapper around the Electron's IPC for building type-safe API based RPC-like and reactive interactions.
66

0 commit comments

Comments
 (0)