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

27 lines
501 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: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
2022-01-23 01:17:29 +03:00
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