utils: errorMessage: filter unuseful lines [skip-cache]

pull/431/head
undefined 2 years ago
parent 1c128f85c5
commit 6cea9eb51c

@ -24,12 +24,6 @@ jobs:
- name: Get yarn cache directory path
id: yarn-cache-dir-path
run: echo "::set-output name=dir::$(yarn config get cacheFolder)"
- name: skip-cache
id: skip-cache
uses: saulmaldonado/skip-workflow@v1
with:
phrase: 'skip-cache'
github-token: ${{ secrets.GITHUB_TOKEN }}
- uses: actions/cache@v3
with:
path: |
@ -42,7 +36,7 @@ jobs:
cache-${{ github.ref }}-
cache-
- name: Clear Cache
if: ${{ steps.skip-cache.outputs.skip }}
if: "contains(github.event.head_commit.message, 'skip-cache')"
run: |
rm -rf node_modules yarn.lock **/tsconfig.tsbuildinfo
- name: Config And Install

@ -162,6 +162,9 @@ export namespace Time {
export function errorMessage(err: Error | string) {
const t = typeof err === 'string' ? err : err.stack;
const parsed = t
.split('\n')
.filter((i) => !i.includes(' (node:'))
.join('\n')
.replace(/[A-Z]:\\.+\\@hydrooj\\/g, '@hydrooj\\')
.replace(/\/.+\/@hydrooj\//g, '\\')
.replace(/[A-Z]:\\.+\\hydrooj\\/g, 'hydrooj\\')

Loading…
Cancel
Save