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

20 lines
311 B
YAML
Raw Normal View History

name: CI
on:
push:
2021-09-06 22:47:09 +03:00
branches: [main]
pull_request:
2021-09-06 22:47:09 +03:00
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