chore: auto format by github action

This commit is contained in:
DIYgod
2020-07-09 16:38:29 +08:00
parent 70d2d6332b
commit f038b0c487
3 changed files with 32 additions and 3 deletions
+28
View File
@@ -0,0 +1,28 @@
name: test
on:
push:
branches: master
jobs:
build:
runs-on: ubuntu-16.04
steps:
- uses: actions/checkout@v1
- uses: actions/setup-python@v1
- uses: actions/setup-node@v1
with:
node-version: '12'
- run: yarn install
- run: npm run format
- name: Commit files
run: |
git config --local user.email "action@github.com"
git config --local user.name "GitHub Action"
git commit -m "style: auto format" -a
- name: Push changes
uses: ad-m/github-push-action@master
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
+3 -2
View File
@@ -24,10 +24,11 @@ jobs:
- uses: actions/setup-node@v1
with:
node-version: ${{ matrix.node-version }}
- run : yarn install
- run: npm run test
- run: yarn install
- run: npm run jest
env:
REDIS_URL: redis://localhost:${{ job.services.redis.ports[6379] }}/
- run: npm run docs:build
- name: Upload coverage to Codecov
uses: codecov/codecov-action@v1
with:
+1 -1
View File
@@ -9,7 +9,7 @@ install:
- yarn
script:
- npm run test
- npm run jest
after_script:
- npm install codecov