Skip to content

Commit

Permalink
Merge pull request #2496 from jhaals/jhaals/tsc
Browse files Browse the repository at this point in the history
Run yarn tsc part of ci
  • Loading branch information
jhaals authored Oct 11, 2024
2 parents 68aa323 + c6d63d8 commit bdcae51
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 3 deletions.
6 changes: 4 additions & 2 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -41,6 +41,8 @@ jobs:
- uses: actions/checkout@v3
- name: yarn install
run: cd website && yarn install
- name: yarn tsc
run: cd website && yarn tsc
- name: yarn lint
run: cd website && yarn run lint
- uses: cypress-io/github-action@v5
Expand All @@ -59,10 +61,10 @@ jobs:
permissions:
pull-requests: write
contents: write
needs: [ "node", "go"]
needs: ["node", "go"]
if: github.actor == 'dependabot[bot]' && github.event_name == 'pull_request'
steps:
- uses: fastify/github-action-merge-dependabot@v3
with:
github-token: ${{ secrets.GITHUB_TOKEN }}
target: 'minor'
target: "minor"
2 changes: 1 addition & 1 deletion website/src/shared/Attribution.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ export const Attribution = () => {
return (
<Typography variant="body2" color="textSecondary" align="center">
{t('attribution.translatedBy')}{' '}
<Link href={t<string>('attribution.translatorLink')}>
<Link href={t('attribution.translatorLink')}>
{t('attribution.translatorName')}
</Link>
</Typography>
Expand Down

0 comments on commit bdcae51

Please sign in to comment.