Skip to content

Commit

Permalink
build: Merge pull request #138 from tagproject/dev
Browse files Browse the repository at this point in the history
build: release v10.0.2
  • Loading branch information
Daniil Ryazanov authored Nov 20, 2022
2 parents 4a533e1 + 7c01e6b commit d082f09
Show file tree
Hide file tree
Showing 6 changed files with 176 additions and 170 deletions.
6 changes: 4 additions & 2 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,8 @@ jobs:

- name: Use Node.js ${{ matrix.node }}
uses: actions/setup-node@v3
with:
node-version: latest

- name: Install Dependencies
run: npm ci
Expand All @@ -40,10 +42,10 @@ jobs:
FILTER: "[.jobs[] | select(.status==\"completed\" and .conclusion==\"failure\") | { status: .conclusion, matrix: .name}] | length"
run: |
FAILURE_COUNT=$(curl -X GET -s -u $USER $URL | jq "$FILTER")
echo "failure_count=$FAILURE_COUNT" >> $GITHUB_OUTPUT
echo "fails=$FAILURE_COUNT" >> $GITHUB_OUTPUT
echo Failure jobs count: $FAILURE_COUNT
- if: ${{ steps.status.outputs.failure_count > 0 }}
- if: ${{ steps.status.outputs.fails > 0 }}
name: Fail
run: exit 1

Expand Down
4 changes: 4 additions & 0 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,8 @@ jobs:

- name: Setup Node.js
uses: actions/setup-node@v3
with:
node-version: latest

- name: Build
run: |
Expand All @@ -49,6 +51,8 @@ jobs:

- name: Use Node.js
uses: actions/setup-node@v3
with:
node-version: latest

- name: Get package version
run: node -p -e '`PACKAGE_VERSION=${require("./package.json").version}`' >> $GITHUB_ENV
Expand Down
6 changes: 3 additions & 3 deletions .sharedconfig.yml
Original file line number Diff line number Diff line change
Expand Up @@ -70,12 +70,12 @@ scripts:
'build': 'npm-run-all build:*'
'build:ts': 'rimraf lib && tsc --extendedDiagnostics'
'generate': 'npm-run-all generate:*'
'generate:changelog': 'node --experimental-specifier-resolution=node node_modules/.bin/changelog generate --bump'
'generate:ghinfo': 'node --experimental-specifier-resolution=node node_modules/.bin/ghinfo generate -d media -t utils'
'generate:changelog': 'changelog generate --bump'
'generate:ghinfo': 'ghinfo generate -d media -t utils'
'lint': 'npm-run-all lint:*'
'lint:eslint': 'rimraf coverage && eslint src --ext .ts'
'prepare': 'npm-run-all prepare:*'
'prepare:config': 'node --experimental-specifier-resolution=node node_modules/.bin/ts-package-shared-config'
'prepare:config': 'ts-package-shared-config'
'prepare:husky': 'husky install'
'release': 'npm-run-all prepare lint test build generate'
'test': 'npm-run-all test:*'
Expand Down
23 changes: 20 additions & 3 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,9 +1,26 @@
# :bug: Bug Fixes
# Important Changes

- Fix jest deprecated conf option [`be1af81`](https://github.com/tagproject/ts-package-shared-config/commit/be1af81de1c53a0578d8aeec01c4351080f84807)
## Dependencies

<details>
<summary>Dependencies</summary>

- Changed **[standard-shared-config](https://www.npmjs.com/package/standard-shared-config)** from `^4.0.15` to `^4.0.17`

</details>

<details>
<summary>Dev Dependencies</summary>

- Changed **[@tagproject/base-shared-config](https://www.npmjs.com/package/@tagproject/base-shared-config)** from `^3.3.2` to `^3.3.4`
- Changed **[@tagproject/docs-shared-config](https://www.npmjs.com/package/@tagproject/docs-shared-config)** from `^1.1.0` to `^1.1.2`
- Changed **[@tagproject/vscode-shared-config](https://www.npmjs.com/package/@tagproject/vscode-shared-config)** from `^2.0.3` to `^2.0.5`
- Changed **[changelog-guru](https://www.npmjs.com/package/changelog-guru)** from `^4.0.6` to `^4.0.8`

</details>

---

# Contributors

[![@keindev](https://avatars.githubusercontent.com/u/4527292?v=4&s=40)](https://github.com/keindev)
[![@keindev](https://avatars.githubusercontent.com/u/4527292?v=4&s=40)](https://github.com/keindev) [![@github-actions[bot]](https://avatars.githubusercontent.com/in/15368?v=4&s=40)](https://github.com/github-actions%5Bbot%5D)
Loading

0 comments on commit d082f09

Please sign in to comment.