Skip to content

Commit 39fe081

Browse files
authored
Merge pull request #87 from bad4iz/feature/затестировать_signFile_#20
затестировать signFile #20
2 parents b6c1fe9 + bce481b commit 39fe081

23 files changed

+2317
-11005
lines changed

._husky/pre-commit

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
#!/bin/sh
2-
. "$(dirname "$0")/_/husky.sh"
3-
1+
#!/bin/sh
2+
. "$(dirname "$0")/_/husky.sh"
3+
44
yarn lint-staged

.github/workflows/build-branch.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
name: "Build Branch"
1+
name: 'Build Branch'
22

33
on:
44
push:

.github/workflows/build-pr.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
name: "Build Pull Request"
1+
name: 'Build Pull Request'
22

33
on:
44
pull_request:

.github/workflows/test-branch.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -13,11 +13,11 @@ jobs:
1313
- name: 'Install Node'
1414
uses: actions/setup-node@v2
1515
with:
16-
node-version: '16.x'
16+
node-version: '18.x'
1717
- name: 'Install Deps'
1818
run: npm install
1919
- name: 'Test'
2020
run: npx vitest --coverage
2121
- name: 'Report Coverage'
2222
if: always() # Also generate the report if tests are failing
23-
uses: davelosert/vitest-coverage-report-action@v1
23+
uses: davelosert/vitest-coverage-report-action@v1

.github/workflows/test-pr.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -17,11 +17,11 @@ jobs:
1717
- name: 'Install Node'
1818
uses: actions/setup-node@v2
1919
with:
20-
node-version: '16.x'
20+
node-version: '18.x'
2121
- name: 'Install Deps'
2222
run: npm install
2323
- name: 'Test'
2424
run: npx vitest --coverage
2525
- name: 'Report Coverage'
2626
if: always() # Also generate the report if tests are failing
27-
uses: davelosert/vitest-coverage-report-action@v1
27+
uses: davelosert/vitest-coverage-report-action@v1

.travis.yml

-3
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,6 @@ cache:
66
directories:
77
- node_modules
88

9-
109
install:
1110
- npm install
1211
script: npm test
@@ -15,8 +14,6 @@ after_success: npm run coverage
1514
before_deploy:
1615
- "echo 'ready?'"
1716
- npm build
18-
19-
2017
#deploy:
2118
# provider: npm
2219
# email: $EMAIL_ADDRESS

LICENSE.txt

+22-22
Original file line numberDiff line numberDiff line change
@@ -1,22 +1,22 @@
1-
Copyright (c) 2021 bad4iz
2-
3-
MIT License
4-
5-
Permission is hereby granted, free of charge, to any person obtaining
6-
a copy of this software and associated documentation files (the
7-
"Software"), to deal in the Software without restriction, including
8-
without limitation the rights to use, copy, modify, merge, publish,
9-
distribute, sublicense, and/or sell copies of the Software, and to
10-
permit persons to whom the Software is furnished to do so, subject to
11-
the following conditions:
12-
13-
The above copyright notice and this permission notice shall be
14-
included in all copies or substantial portions of the Software.
15-
16-
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
17-
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
18-
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
19-
NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
20-
LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
21-
OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
22-
WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
1+
Copyright (c) 2021 bad4iz
2+
3+
MIT License
4+
5+
Permission is hereby granted, free of charge, to any person obtaining
6+
a copy of this software and associated documentation files (the
7+
"Software"), to deal in the Software without restriction, including
8+
without limitation the rights to use, copy, modify, merge, publish,
9+
distribute, sublicense, and/or sell copies of the Software, and to
10+
permit persons to whom the Software is furnished to do so, subject to
11+
the following conditions:
12+
13+
The above copyright notice and this permission notice shall be
14+
included in all copies or substantial portions of the Software.
15+
16+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
17+
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
18+
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
19+
NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
20+
LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
21+
OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
22+
WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

index.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
<!DOCTYPE html>
1+
<!doctype html>
22
<html lang="en">
33
<head>
44
<meta charset="UTF-8" />

0 commit comments

Comments
 (0)