Skip to content

Commit

Permalink
Set up the CI (#7)
Browse files Browse the repository at this point in the history
  • Loading branch information
katspaugh authored Aug 9, 2021
1 parent 0863eae commit 7e72127
Show file tree
Hide file tree
Showing 2 changed files with 18 additions and 0 deletions.
9 changes: 9 additions & 0 deletions .github/workflows/lint.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
name: 'Lint'
on: [pull_request]

jobs:
eslint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: reviewdog/action-eslint
9 changes: 9 additions & 0 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
name: 'Unit tests'
on: [pull_request]

jobs:
tests:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: mattallty/jest-github-action

0 comments on commit 7e72127

Please sign in to comment.