Skip to content

Commit

Permalink
test
Browse files Browse the repository at this point in the history
  • Loading branch information
christianvogt committed May 10, 2024
1 parent f3927fd commit 5c52258
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
name: Pull request
on:
pull_request:
name: Test
on: [push, pull_request]
jobs:
Tests:
runs-on: ubuntu-latest
Expand Down
2 changes: 2 additions & 0 deletions frontend/src/utilities/string.ts
Original file line number Diff line number Diff line change
Expand Up @@ -103,3 +103,5 @@ export const truncateString = (str: string, length: number): string => {
}
return `${str.substring(0, length)}…`;
};

export const testFunction = (x: string, y: string): string => `${x}-${y}`;

0 comments on commit 5c52258

Please sign in to comment.