Skip to content

Commit

Permalink
Add CI
Browse files Browse the repository at this point in the history
  • Loading branch information
jessarcher committed May 12, 2022
1 parent 1327978 commit 8ddeb35
Showing 1 changed file with 25 additions and 0 deletions.
25 changes: 25 additions & 0 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
name: tests

on:
push:
pull_request:

jobs:
tests:
runs-on: ubuntu-latest

steps:
- name: Checkout code
uses: actions/checkout@v1

- name: Install dependencies
run: npm install

- name: ESLint
run: npm run lint

- name: Execute tests
run: npm test

- name: Run build
run: npm run build

0 comments on commit 8ddeb35

Please sign in to comment.