Skip to content

Commit

Permalink
ci: setup github actions
Browse files Browse the repository at this point in the history
build and run tests on ci
  • Loading branch information
bahdcoder committed Jul 30, 2020
1 parent 111b37b commit 40956a0
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: Build & Test CI

on:
push:
branches:
- master
pull_request:
branches:
- master

jobs:
builds:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2

- name: Install dependencies
run: yarn
- name: Build packages
run: yarn build
- name: Automated tests
run: yarn test

0 comments on commit 40956a0

Please sign in to comment.