Skip to content

Commit

Permalink
ci: add GitHub Actions for CI (#879)
Browse files Browse the repository at this point in the history
* ci: add GitHub Actions for CI

* ci: run CI for pull requets and push to master, next

* Update test.yml
  • Loading branch information
koba04 authored Jan 10, 2021
1 parent 550d7ed commit 1ece1f4
Showing 1 changed file with 26 additions and 0 deletions.
26 changes: 26 additions & 0 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
name: TypeCheck, Lint, and Test

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

jobs:
test:

runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v2
- name: Use Node.js
uses: actions/setup-node@v1
with:
node-version: '14.x'
- run: yarn install
- run: yarn types:check
- run: yarn lint
- run: yarn test
env:
CI: true

0 comments on commit 1ece1f4

Please sign in to comment.