Skip to content

Commit

Permalink
feat(ci): build (#57)
Browse files Browse the repository at this point in the history
  • Loading branch information
tarrencev authored Oct 10, 2020
1 parent 80e4ff2 commit e79b733
Show file tree
Hide file tree
Showing 2 changed files with 25 additions and 1 deletion.
18 changes: 18 additions & 0 deletions .github/workflows/build.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
name: build
on:
push:
branches:
- master
pull_request:
branches:
- master
jobs:
build:
runs-on: ubuntu-latest
timeout-minutes: 5
steps:
- uses: actions/checkout@v1
- name: install
run: yarn
- name: build
run: yarn build
8 changes: 7 additions & 1 deletion .github/workflows/lint.yaml
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
name: lint
on: [push]
on:
push:
branches:
- master
pull_request:
branches:
- master
jobs:
lint:
runs-on: ubuntu-latest
Expand Down

0 comments on commit e79b733

Please sign in to comment.