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

Commit 8291c36

Browse files
committed
Use GH Actions
This migrates to a more accessible platform
1 parent 4de0644 commit 8291c36

File tree

2 files changed

+29
-30
lines changed

2 files changed

+29
-30
lines changed

.github/workflows/ci.yml

+29
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,29 @@
1+
name: CI
2+
on:
3+
- push
4+
- pull_request
5+
6+
jobs:
7+
ci:
8+
name: "Build & Test (React v${{ matrix.react_version}})"
9+
runs-on: ubuntu-latest
10+
strategy:
11+
matrix:
12+
react_version:
13+
- "0.14.9"
14+
- "15.0"
15+
- "15"
16+
- "16.0"
17+
- "16"
18+
steps:
19+
- uses: actions/checkout@v2
20+
- uses: actions/setup-node@v2
21+
with:
22+
node-version: "lts/*"
23+
cache: 'yarn'
24+
- run: yarn install
25+
- run: yarn add react@${{ matrix.react_version }}
26+
- run: yarn list --pattern 'react'
27+
- run: yarn run pretest
28+
- run: yarn run tests-only
29+
- run: yarn run build

.travis.yml

-30
This file was deleted.

0 commit comments

Comments
 (0)