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

Use GH Actions #363

Merged
merged 1 commit into from
Nov 24, 2021
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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.