Skip to content

Commit f659521

Browse files
authored
Merge pull request #17 from YsnKsy/tests-multiplatform
ci(pull-request.yaml): update matrix [os, node]
2 parents 136cb46 + b68b451 commit f659521

File tree

2 files changed

+7
-7
lines changed

2 files changed

+7
-7
lines changed

.github/workflows/pull-request.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,8 +11,8 @@ jobs:
1111
timeout-minutes: 5
1212
strategy:
1313
matrix:
14-
os: [ubuntu-latest]
15-
node-version: [12.x]
14+
os: [ubuntu-latest, macos-latest, windows-latest]
15+
node-version: [12.x, 14.x]
1616
steps:
1717
- name: Checkout
1818
uses: actions/checkout@v2

package.json

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -22,14 +22,14 @@
2222
"scripts": {
2323
"test": "jest",
2424
"typescript": "tsc --noEmit -p . --pretty",
25-
"lint": "eslint \"**/*.{js,ts,tsx}\"",
25+
"lint": "eslint \"./**/*.{js,ts,tsx}\"",
2626
"example": "yarn --cwd example",
2727
"bootstrap": "yarn example && yarn",
2828
"format": "npm-run-all format:*",
29-
"format:js": "prettier --write '**/*.js'",
30-
"format:json": "prettier --write '**/*.json'",
31-
"format:md": "prettier --write '**/*.md'",
32-
"format:ts": "prettier --write '**/*.ts{,x}'",
29+
"format:js": "prettier --write \"./**/*.js\"",
30+
"format:json": "prettier --write \"./**/*.json\"",
31+
"format:md": "prettier --write \"./**/*.md\"",
32+
"format:ts": "prettier --write \"./**/*.ts{,x}\"",
3333
"hack": "rimraf node_modules/@types/react-native/node_modules/@types",
3434
"patch": "patch-package",
3535
"prepare": "npm-run-all patch hack",

0 commit comments

Comments
 (0)