Skip to content
This repository was archived by the owner on Feb 19, 2025. It is now read-only.

Commit 355b083

Browse files
author
Ruben Schmidmeister
committed
Add github actions config
1 parent a9b7150 commit 355b083

File tree

1 file changed

+26
-0
lines changed

1 file changed

+26
-0
lines changed

.github/workflows/test.yml

Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
name: Test
2+
3+
on: ["push", "pull_request"]
4+
5+
jobs:
6+
build:
7+
runs-on: ubuntu-latest
8+
9+
steps:
10+
- uses: actions/checkout@master
11+
12+
- name: Use Node.js 10.x
13+
uses: actions/setup-node@v1
14+
with:
15+
version: 10.x
16+
- run: npm install -g yarn
17+
18+
- name: Install Dependencies
19+
run: yarn install
20+
- name: Test
21+
run: yarn test
22+
23+
- name: Report Coverage
24+
uses: coverallsapp/github-action@master
25+
with:
26+
github-token: ${{ secrets.GITHUB_TOKEN }}

0 commit comments

Comments
 (0)