Skip to content

Commit

Permalink
chore: create GH action
Browse files Browse the repository at this point in the history
  • Loading branch information
CodyJasonBennett committed Feb 8, 2022
1 parent e187831 commit 97fc914
Showing 1 changed file with 25 additions and 0 deletions.
25 changes: 25 additions & 0 deletions .github/workflows/CI.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
name: CI
on:
push:
branches: [master]
pull_request:
branches: [master]

jobs:
build-test-lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v2

- name: Install dependencies
run: yarn install

- name: Check build health
run: yarn build

# - name: Run tests
# run: yarn test --silent

- name: Check for regressions
run: yarn lint

0 comments on commit 97fc914

Please sign in to comment.