redux-devtools/.github/workflows/CI.yml
Nick McCurdy 7c9579c141
chore(*): build on Linux for performance (#865)
* chore(*): build on Linux for performance

* Try using xvfb

Co-authored-by: Nathan Bierema <nbierema@gmail.com>
2021-09-18 00:19:35 -04:00

23 lines
397 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 prettier:check
- run: yarn build:all
- run: yarn lint:all
- name: Run yarn test:all
uses: GabrielBB/xvfb-action@v1
with:
run: yarn test:all