Skip to content

Commit

Permalink
Updated workflow validate.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
Jaid committed Apr 16, 2020
1 parent b7ee8e6 commit 2cf6ffe
Showing 1 changed file with 30 additions and 0 deletions.
30 changes: 30 additions & 0 deletions .github/workflows/validate.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
name: Validate and autofix
on:
push:
branches: [master]
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: actions/checkout
uses: actions/checkout@v2.1.0
- name: actions/setup-node
uses: actions/setup-node@v1.4.1
with:
node-version: "13.13.0"
- name: npm install
uses: jaid/action-npm-install@master
- name: Jest
uses: jaid/action-jest@master
with:
githubToken: ${{ secrets.GITHUB_TOKEN }}
- name: Sync Node Meta
uses: jaid/action-sync-node-meta@master
with:
githubToken: ${{ secrets.GITHUB_TOKEN }}
- name: Uptodater
uses: jaid/action-uptodater@master
with:
token: ${{ secrets.GITHUB_TOKEN }}
fix: "true"
approve: "true"

0 comments on commit 2cf6ffe

Please sign in to comment.