Skip to content

Commit 7a1df1b

Browse files
authored
chore: update dependencies (#108)
1 parent 4be75a2 commit 7a1df1b

19 files changed

Lines changed: 13021 additions & 7038 deletions

.gitattributes

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,3 @@
11
dist/* linguist-generated=true
22
yarn.lock linguist-generated=true
3+
package-lock.json linguist-generated=true

.github/workflows/actionlint.yml

Lines changed: 0 additions & 15 deletions
This file was deleted.

.github/workflows/ci.yml

Lines changed: 0 additions & 29 deletions
This file was deleted.

.github/workflows/lint-pr-title.yml

Lines changed: 0 additions & 14 deletions
This file was deleted.

.github/workflows/njsscan-analysis.yml

Lines changed: 0 additions & 27 deletions
This file was deleted.

.github/workflows/test.yml

Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
name: Test
2+
3+
on:
4+
push:
5+
branches: [master]
6+
pull_request:
7+
branches: [master]
8+
9+
jobs:
10+
Build:
11+
name: Build and Test
12+
runs-on: ubuntu-latest
13+
steps:
14+
- uses: actions/checkout@v3
15+
- uses: actions/setup-node@v3
16+
with:
17+
node-version-file: ".node-version"
18+
cache: "npm"
19+
- run: npm ci
20+
- run: npm audit signatures
21+
- run: npm run build
22+
- run: npm run test
23+
- name: Upload coverage to Codecov
24+
uses: codecov/codecov-action@v3
25+
with:
26+
token: ${{ secrets.CODECOV_TOKEN }}
27+
directory: ./coverage/

.gitignore

Lines changed: 0 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -59,12 +59,3 @@ typings/
5959

6060
# next.js build output
6161
.next
62-
63-
# yarn v3
64-
.pnp.*
65-
.yarn/*
66-
!.yarn/patches
67-
!.yarn/plugins
68-
!.yarn/releases
69-
!.yarn/sdks
70-
!.yarn/versions

.husky/pre-commit

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
#!/bin/sh
22
. "$(dirname "$0")/_/husky.sh"
33

4-
yarn build
4+
npm run build

.node-version

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
16.20.1

.renovaterc.json

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,6 @@
11
{
22
"extends": ["github>bicstone/renovate-config"],
33
"packageRules": [
4-
{
5-
"groupName": "devDependencies",
6-
"matchDepTypes": ["dependencies"],
7-
"matchPackagePatterns": ["*"],
8-
"matchUpdateTypes": ["minor", "patch"]
9-
},
104
{
115
"enabled": false,
126
"matchPackagePatterns": ["axios"]

0 commit comments

Comments
 (0)