This repository has been archived by the owner on Sep 1, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 356
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
This migrates to a more accessible platform
- Loading branch information
Showing
2 changed files
with
29 additions
and
30 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |
This file was deleted.
Oops, something went wrong.