@yarn-tool/static-file 1.0.98 → 1.0.99
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,18 @@
|
|
|
3
3
|
All notable changes to this project will be documented in this file.
|
|
4
4
|
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
|
|
5
5
|
|
|
6
|
+
## [1.0.99](https://github.com/bluelovers/ws-yarn-workspaces/compare/@yarn-tool/static-file@1.0.98...@yarn-tool/static-file@1.0.99) (2022-03-14)
|
|
7
|
+
|
|
8
|
+
|
|
9
|
+
### 🔖 Miscellaneous
|
|
10
|
+
|
|
11
|
+
* . ([7e31733](https://github.com/bluelovers/ws-yarn-workspaces/commit/7e31733febde1a879ded2feba01ff679874c4b4b))
|
|
12
|
+
* . ([ceb7f75](https://github.com/bluelovers/ws-yarn-workspaces/commit/ceb7f7519ffca1c219539e8056f1d14f77e96e51))
|
|
13
|
+
|
|
14
|
+
|
|
15
|
+
|
|
16
|
+
|
|
17
|
+
|
|
6
18
|
## [1.0.98](https://github.com/bluelovers/ws-yarn-workspaces/compare/@yarn-tool/static-file@1.0.96...@yarn-tool/static-file@1.0.98) (2022-02-27)
|
|
7
19
|
|
|
8
20
|
|
|
@@ -30,13 +30,19 @@ jobs:
|
|
|
30
30
|
build:
|
|
31
31
|
runs-on: ubuntu-latest
|
|
32
32
|
if: "!contains(github.event.head_commit.message, '[skip ci]')"
|
|
33
|
+
|
|
34
|
+
strategy:
|
|
35
|
+
matrix:
|
|
36
|
+
node-version: [ 17 ]
|
|
37
|
+
|
|
33
38
|
steps:
|
|
34
|
-
- uses: actions/checkout@
|
|
39
|
+
- uses: actions/checkout@main
|
|
35
40
|
with:
|
|
36
41
|
fetch-depth: 2
|
|
37
|
-
-
|
|
42
|
+
- name: Set up Node.js ${{ matrix.node-version }}
|
|
43
|
+
uses: actions/setup-node@main
|
|
38
44
|
with:
|
|
39
|
-
node-version:
|
|
45
|
+
node-version: ${{ matrix.node-version }}
|
|
40
46
|
- name: get yarn cache dir
|
|
41
47
|
id: yarn-cache
|
|
42
48
|
run: echo "::set-output name=dir::$(yarn cache dir)"
|
|
@@ -15,19 +15,30 @@ jobs:
|
|
|
15
15
|
if: "!contains(github.event.head_commit.message, '[skip ci]')"
|
|
16
16
|
env:
|
|
17
17
|
CI_JOB_NUMBER: 1
|
|
18
|
+
|
|
19
|
+
strategy:
|
|
20
|
+
matrix:
|
|
21
|
+
node-version: [ 17 ]
|
|
22
|
+
|
|
18
23
|
steps:
|
|
19
|
-
- uses: actions/checkout@
|
|
20
|
-
-
|
|
24
|
+
- uses: actions/checkout@main
|
|
25
|
+
- name: Set up Node.js ${{ matrix.node-version }}
|
|
26
|
+
uses: actions/setup-node@main
|
|
21
27
|
with:
|
|
22
|
-
node-version:
|
|
28
|
+
node-version: ${{ matrix.node-version }}
|
|
23
29
|
- name: install
|
|
24
30
|
run: |
|
|
25
31
|
yarn install --frozen-lockfile
|
|
26
32
|
yarn run ci:install
|
|
27
33
|
# yarn add -W typescript@next jest ts-jest ts-node ynpx lerna
|
|
28
|
-
- uses: artiomtr/jest-coverage-report-action@
|
|
34
|
+
- uses: artiomtr/jest-coverage-report-action@main
|
|
29
35
|
with:
|
|
30
36
|
github-token: ${{ secrets.GITHUB_TOKEN }}
|
|
31
37
|
package-manager: yarn
|
|
32
38
|
# threshold: 80 # optional parameter
|
|
33
39
|
test-script: npx jest --silent --ci --coverage=false --coverageReporters="text" --coverageReporters="text-summary"
|
|
40
|
+
- name: Upload coverage to Codecov
|
|
41
|
+
uses: codecov/codecov-action@master
|
|
42
|
+
with:
|
|
43
|
+
token: ${{ secrets.CODECOV_TOKEN }}
|
|
44
|
+
verbose: true
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@yarn-tool/static-file",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.99",
|
|
4
4
|
"description": "",
|
|
5
5
|
"homepage": "https://github.com/bluelovers/ws-yarn-workspaces/tree/master/packages/@yarn-tool/static-file#readme",
|
|
6
6
|
"bugs": {
|
|
@@ -31,5 +31,5 @@
|
|
|
31
31
|
"publishConfig": {
|
|
32
32
|
"access": "public"
|
|
33
33
|
},
|
|
34
|
-
"gitHead": "
|
|
34
|
+
"gitHead": "7b783c898c714abcf51de68292d5528732ca8ec3"
|
|
35
35
|
}
|