Skip to content

Commit

Permalink
chore: add github actions
Browse files Browse the repository at this point in the history
  • Loading branch information
neighborhood999 committed Feb 7, 2020
1 parent 8c37496 commit 92a1bab
Showing 1 changed file with 22 additions and 0 deletions.
22 changes: 22 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
name: Node CI
on:
push:
branches: [master]
pull_request:
branches: [master]
jobs:
lint-and-test:
name: 'Lint & Tests'
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@master
- name: Set up Node.js
uses: actions/setup-node@master
- name: Installing Deps
run: |
yarn install
- name: Lint & Tests
run: |
yarn run lint
yarn test

0 comments on commit 92a1bab

Please sign in to comment.