Skip to content
This repository was archived by the owner on Feb 19, 2025. It is now read-only.

Commit f132fb3

Browse files
committed
Use npm over yarn
1 parent a01fe99 commit f132fb3

File tree

2 files changed

+5
-8
lines changed

2 files changed

+5
-8
lines changed

.github/workflows/test.yml

Lines changed: 4 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -16,14 +16,11 @@ jobs:
1616
- run: npm install -g yarn
1717

1818
- name: Install Dependencies
19-
run: yarn install
19+
run: npm ci
2020
- name: Test
21-
run: yarn test
22-
- name: Check Code Style
23-
run: yarn lint
24-
- name: Lint .d.ts
25-
run: yarn dtslint
26-
21+
run: npm run test
22+
- name: Lint
23+
run: npm run lint
2724
- name: Report Coverage
2825
uses: coverallsapp/github-action@v2
2926
with:

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
"types": "index.d.ts",
77
"scripts": {
88
"test": "nyc --reporter=lcov mocha",
9-
"lint": "standard index.js"
9+
"lint": "standard index.js && dtslint"
1010
},
1111
"repository": {
1212
"type": "git",

0 commit comments

Comments
 (0)