redux-devtools/.github/workflows/CI.yml
2021-09-06 19:47:09 +00:00

20 lines
323 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 --immutable
- run: yarn prettier:check
- run: yarn build:all
- run: yarn lint:all
- run: yarn test:all