redux-devtools/.github/workflows/CI.yml
2021-09-15 21:25:49 +00:00

20 lines
311 B
YAML

name: CI
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
build:
runs-on: windows-latest
steps:
- uses: actions/checkout@v2
- run: yarn install
- run: yarn prettier:check
- run: yarn build:all
- run: yarn lint:all
- run: yarn test:all