Skip to content

Commit

Permalink
manage: Added GitHub Actions workflow validate.yml
Browse files Browse the repository at this point in the history
Signed-off-by: Jaid <jaid.jsx@gmail.com>
  • Loading branch information
Jaid committed Nov 28, 2019
1 parent 563d5ff commit c62c31b
Showing 1 changed file with 24 additions and 0 deletions.
24 changes: 24 additions & 0 deletions .github/workflows/validate.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
name: Validate and autofix
on:
push:
branches: [master]
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: actions/checkout
uses: actions/checkout@v1.2.0
- name: actions/setup-node
uses: actions/setup-node@v1.3.0
with:
node-version: "12.13.1"
- name: npm install
uses: jaid/action-npm-install@master
- name: Jest
uses: jaid/action-jest@master
- name: Uptodater
uses: jaid/action-uptodater@master
with:
token: ${{ secrets.GITHUB_TOKEN }}
fix: "true"
approve: "true"

0 comments on commit c62c31b

Please sign in to comment.