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 3cd9d1a commit d31c1adCopy full SHA for d31c1ad
.github/workflows/test.yml
@@ -0,0 +1,19 @@
1
+name: test
2
+
3
+on: [push]
4
5
+jobs:
6
+ build:
7
+ runs-on: ubuntu-latest
8
+ strategy:
9
+ matrix:
10
+ node-version: [10.x, 12.x]
11
+ steps:
12
+ - uses: actions/checkout@v2
13
+ - name: Setup node
14
+ uses: actions/setup-node@v1
15
+ with:
16
+ node-version: ${{ matrix.node }}
17
+ - run: yarn install
18
+ - run: yarn lint
19
+ - run: yarn test
package.json
@@ -19,7 +19,7 @@
"prepublish": "npm run build",
20
"build": "tsc",
21
"lint": "eslint src/**/*.ts --fix --cache",
22
- "test": "npm run lint && jest"
+ "test": "jest"
23
},
24
"bin": {
25
"extract-react-intl-messages": "cli.js",
0 commit comments