Skip to content
This repository has been archived by the owner on Dec 12, 2020. It is now read-only.

Commit

Permalink
chore: Add github actions as CI server
Browse files Browse the repository at this point in the history
  • Loading branch information
ktutnik committed Apr 29, 2020
1 parent 9813b22 commit b157fae
Showing 1 changed file with 23 additions and 0 deletions.
23 changes: 23 additions & 0 deletions .github/workflows/ubuntu.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
name: ubuntu

on: [push, pull_request]

jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v1
- name: Setup Node
uses: actions/setup-node@v1
with:
node-version: '12'
- name: Install yarn
run: curl -o- -L https://yarnpkg.com/install.sh | bash
- name: Install dependencies
run: yarn install
- name: Run tests
run: yarn test
- name: Coveralls
uses: coverallsapp/github-action@master
with:
github-token: ${{ secrets.GITHUB_TOKEN }}

0 comments on commit b157fae

Please sign in to comment.