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

Commit

Permalink
Use GH Actions
Browse files Browse the repository at this point in the history
This migrates to a more accessible platform
  • Loading branch information
zpao committed Nov 23, 2021
1 parent 4de0644 commit 8291c36
Show file tree
Hide file tree
Showing 2 changed files with 29 additions and 30 deletions.
29 changes: 29 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
name: CI
on:
- push
- pull_request

jobs:
ci:
name: "Build & Test (React v${{ matrix.react_version}})"
runs-on: ubuntu-latest
strategy:
matrix:
react_version:
- "0.14.9"
- "15.0"
- "15"
- "16.0"
- "16"
steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v2
with:
node-version: "lts/*"
cache: 'yarn'
- run: yarn install
- run: yarn add react@${{ matrix.react_version }}
- run: yarn list --pattern 'react'
- run: yarn run pretest
- run: yarn run tests-only
- run: yarn run build
30 changes: 0 additions & 30 deletions .travis.yml

This file was deleted.

0 comments on commit 8291c36

Please sign in to comment.