Merge remote-tracking branch 'reduxjs/master' into upgrade-typescript

This commit is contained in:
Nathan Bierema 2021-06-16 11:07:32 -04:00
commit 6790090b90
2 changed files with 19 additions and 8 deletions

19
.github/workflows/CI.yml vendored Normal file
View File

@ -0,0 +1,19 @@
name: CI
on:
push:
branches: [master]
pull_request:
branches: [master]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- run: yarn install --immutable
- run: yarn prettier:check
- run: yarn build:all
- run: yarn lint:all
- run: yarn test:all

View File

@ -1,8 +0,0 @@
language: node_js
node_js:
- 'stable'
script:
- yarn prettier:check
- yarn build:all
- yarn lint:all
- yarn test:all