Skip to content

Commit

Permalink
feat(workflows): add lint-source
Browse files Browse the repository at this point in the history
  • Loading branch information
phatpham9 committed Mar 26, 2020
1 parent 8a804c9 commit 7401b2a
Showing 1 changed file with 19 additions and 0 deletions.
19 changes: 19 additions & 0 deletions workflows/lint-source.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
name: lint-source

on: push

jobs:
lint-source:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v1
with:
node-version: 12
registry-url: https://registry.npmjs.org
- name: Install dependencies
run: yarn
- name: Check source format
run: yarn format:check
- name: Analyze source
run: yarn lint

0 comments on commit 7401b2a

Please sign in to comment.