Loading .github/workflows/build.yaml +2 −4 Original line number Diff line number Diff line Loading @@ -58,12 +58,11 @@ jobs: env: RUST_BACKTRACE: ${{ runner.debug }} LOG: ${{ runner.debug && 'always' || '' }} working-directory: ${{ github.workspace }}/fedify/ - uses: dorny/test-reporter@v2 if: success() || failure() with: name: "Test Results (${{ matrix.os }})" path: fedify/.test-report.xml path: .test-report.xml reporter: jest-junit continue-on-error: true - if: '!cancelled()' Loading @@ -72,12 +71,11 @@ jobs: token: ${{ secrets.CODECOV_TOKEN }} files: .test-report.xml - run: deno coverage --lcov .cov > .cov.lcov working-directory: ${{ github.workspace }}/fedify/ continue-on-error: true - uses: codecov/codecov-action@v5 with: token: ${{ secrets.CODECOV_TOKEN }} files: fedify/.cov.lcov files: .cov.lcov continue-on-error: true test-node: Loading cli/webfinger.ts +1 −1 Original line number Diff line number Diff line Loading @@ -101,7 +101,7 @@ class NotFoundError extends Error { * console.log(url.toString()); // "https://domain.com/@username" * ``` */ function convertHandleToUrl(handle: string): URL { export function convertHandleToUrl(handle: string): URL { return toAcctUrl(handle) ?? // Convert the handle to a URL new InvalidHandleError(handle).throw(); // or throw an error if invalid } Loading
.github/workflows/build.yaml +2 −4 Original line number Diff line number Diff line Loading @@ -58,12 +58,11 @@ jobs: env: RUST_BACKTRACE: ${{ runner.debug }} LOG: ${{ runner.debug && 'always' || '' }} working-directory: ${{ github.workspace }}/fedify/ - uses: dorny/test-reporter@v2 if: success() || failure() with: name: "Test Results (${{ matrix.os }})" path: fedify/.test-report.xml path: .test-report.xml reporter: jest-junit continue-on-error: true - if: '!cancelled()' Loading @@ -72,12 +71,11 @@ jobs: token: ${{ secrets.CODECOV_TOKEN }} files: .test-report.xml - run: deno coverage --lcov .cov > .cov.lcov working-directory: ${{ github.workspace }}/fedify/ continue-on-error: true - uses: codecov/codecov-action@v5 with: token: ${{ secrets.CODECOV_TOKEN }} files: fedify/.cov.lcov files: .cov.lcov continue-on-error: true test-node: Loading
cli/webfinger.ts +1 −1 Original line number Diff line number Diff line Loading @@ -101,7 +101,7 @@ class NotFoundError extends Error { * console.log(url.toString()); // "https://domain.com/@username" * ``` */ function convertHandleToUrl(handle: string): URL { export function convertHandleToUrl(handle: string): URL { return toAcctUrl(handle) ?? // Convert the handle to a URL new InvalidHandleError(handle).throw(); // or throw an error if invalid }