redux-devtools/.github/workflows/CI.yml
renovate[bot] 63272596bd
chore(deps): update actions/checkout action to v3 (#1105)
Co-authored-by: Renovate Bot <bot@renovateapp.com>
2022-03-03 22:57:40 +00:00

27 lines
501 B
YAML

name: CI
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: 'lts/*'
cache: 'yarn'
- 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