We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7afa70a commit ca38c20Copy full SHA for ca38c20
.github/pull_request_template.md
@@ -0,0 +1 @@
1
+This PR fixes #
.github/workflows/ci.yml
@@ -0,0 +1,21 @@
+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
17
18
19
20
21
.npmignore
@@ -1,6 +1,7 @@
-.vscode
-node_modules
-src
-.gitignore
-lib/test
+.vscode
+node_modules
+src
+.gitignore
+.github
+lib/test
testData
0 commit comments