We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ffb8ed3 commit 9a7c89fCopy full SHA for 9a7c89f
.editorconfig
@@ -11,7 +11,7 @@ max_line_length = 80
11
indent_style = tab
12
indent_size = 4
13
14
-[*.md]
+[*.{md,yml}]
15
indent_style = space
16
17
[COMMIT_EDITMSG]
.github/workflows/nodejs.yml
@@ -0,0 +1,19 @@
1
+name: tests
2
+on:
3
+- push
4
+jobs:
5
+ build:
6
+ runs-on: ubuntu-latest
7
+ strategy:
8
+ matrix:
9
+ node-version:
10
+ - 8.x
+ - 12.x
+ steps:
+ - uses: actions/checkout@v1
+ - uses: actions/setup-node@v1
+ with:
+ node-version: ${{ matrix.node-version }}
+ - run: npm install-test
18
+ env:
19
+ CI: true
.travis.yml
0 commit comments