redux-devtools/.github/workflows/CI.yml

20 lines
327 B
YAML
Raw Normal View History

name: CI
on:
push:
branches: [master]
pull_request:
branches: [master]
jobs:
build:
runs-on: windows-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