mirror of
https://github.com/reduxjs/redux-devtools.git
synced 2025-03-03 10:45:48 +03:00
chore(*): use GitHub Actions for CI (#738)
This commit is contained in:
parent
50653641a9
commit
81916f6cb8
19
.github/workflows/CI.yml
vendored
Normal file
19
.github/workflows/CI.yml
vendored
Normal file
|
@ -0,0 +1,19 @@
|
|||
name: CI
|
||||
|
||||
on:
|
||||
push:
|
||||
branches: [master]
|
||||
pull_request:
|
||||
branches: [master]
|
||||
|
||||
jobs:
|
||||
build:
|
||||
runs-on: ubuntu-latest
|
||||
|
||||
steps:
|
||||
- uses: actions/checkout@v2
|
||||
- run: yarn install --immutable
|
||||
- run: yarn prettier:check
|
||||
- run: yarn build:all
|
||||
- run: yarn lint:all
|
||||
- run: yarn test:all
|
|
@ -1,8 +0,0 @@
|
|||
language: node_js
|
||||
node_js:
|
||||
- 'stable'
|
||||
script:
|
||||
- yarn prettier:check
|
||||
- yarn build:all
|
||||
- yarn lint:all
|
||||
- yarn test:all
|
Loading…
Reference in New Issue
Block a user