Skip to content

Commit ca38c20

Browse files
authored
Add action to run tests, add PR template (#60)
1 parent 7afa70a commit ca38c20

File tree

3 files changed

+28
-5
lines changed

3 files changed

+28
-5
lines changed

.github/pull_request_template.md

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
This PR fixes #

.github/workflows/ci.yml

+21
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
name: run-tests
2+
on: push
3+
jobs:
4+
yarn-ubuntu:
5+
name: yarn-ubuntu
6+
runs-on: ubuntu-latest
7+
steps:
8+
- name: Check out repository
9+
uses: actions/checkout@v2
10+
- name: Run yarn
11+
run: |
12+
yarn && yarn compile && yarn test
13+
yarn-windows:
14+
name: yarn-windows
15+
runs-on: windows-latest
16+
steps:
17+
- name: Check out repository
18+
uses: actions/checkout@v2
19+
- name: Run yarn
20+
run: |
21+
yarn && yarn compile && yarn test

.npmignore

+6-5
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
1-
.vscode
2-
node_modules
3-
src
4-
.gitignore
5-
lib/test
1+
.vscode
2+
node_modules
3+
src
4+
.gitignore
5+
.github
6+
lib/test
67
testData

0 commit comments

Comments
 (0)