Skip to content

Commit 2966db5

Browse files
Uzlopakanonrig
authored andcommitted
add dependabot.yml
switch to npm
1 parent 10e25de commit 2966db5

File tree

6 files changed

+20
-1297
lines changed

6 files changed

+20
-1297
lines changed

.github/dependabot.yml

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
version: 2
2+
updates:
3+
- package-ecosystem: "github-actions"
4+
directory: "/"
5+
schedule:
6+
interval: "monthly"
7+
open-pull-requests-limit: 10
8+
9+
- package-ecosystem: "npm"
10+
directory: "/"
11+
schedule:
12+
interval: "weekly"
13+
open-pull-requests-limit: 10

.github/workflows/coverage.yml

Lines changed: 2 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -26,18 +26,11 @@ jobs:
2626
- name: Use Node.js
2727
uses: actions/setup-node@v3
2828

29-
- uses: pnpm/action-setup@v2.2.4
30-
name: Install pnpm
31-
id: pnpm-install
32-
with:
33-
version: 7
34-
run_install: true
35-
3629
- name: Install dependencies
37-
run: pnpm install --ignore-scripts
30+
run: npm install --ignore-scripts
3831

3932
- name: Coverage
40-
run: pnpm run test:coverage
33+
run: npm run test:coverage
4134

4235
- name: Upload Coverage
4336
uses: codecov/codecov-action@v3

.github/workflows/linter.yml

Lines changed: 2 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -26,15 +26,8 @@ jobs:
2626
- name: Use Node.js
2727
uses: actions/setup-node@v3
2828

29-
- uses: pnpm/action-setup@v2.2.4
30-
name: Install pnpm
31-
id: pnpm-install
32-
with:
33-
version: 7
34-
run_install: true
35-
3629
- name: Install dependencies
37-
run: pnpm install --ignore-scripts
30+
run: npm install --ignore-scripts
3831

3932
- name: Linter
40-
run: pnpm run format:ci
33+
run: npm run format:ci

.github/workflows/test.yml

Lines changed: 2 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -32,15 +32,8 @@ jobs:
3232
with:
3333
node-version: ${{ matrix.node-version }}
3434

35-
- uses: pnpm/action-setup@v2.2.4
36-
name: Install pnpm
37-
id: pnpm-install
38-
with:
39-
version: 7
40-
run_install: true
41-
4235
- name: Install dependencies
43-
run: pnpm install --ignore-scripts
36+
run: npm install --ignore-scripts
4437

4538
- name: Test
46-
run: pnpm test
39+
run: npm test

.npmrc

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
package-lock=false

0 commit comments

Comments
 (0)