mirror of
https://github.com/reduxjs/redux-devtools.git
synced 2024-11-24 10:33:58 +03:00
97ca2fc781
* Start work * More work * More work * Prettify * Fix * More work * Fix * Cleanup
23 lines
395 B
YAML
23 lines
395 B
YAML
name: CI
|
|
|
|
on:
|
|
push:
|
|
branches: [main]
|
|
pull_request:
|
|
branches: [main]
|
|
|
|
jobs:
|
|
build:
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
- uses: actions/checkout@v2
|
|
- run: yarn install
|
|
- run: yarn format:check
|
|
- run: yarn build:all
|
|
- run: yarn lint:all
|
|
- name: Run yarn test:all
|
|
uses: GabrielBB/xvfb-action@v1
|
|
with:
|
|
run: yarn test:all
|