Skip to content

Commit

Permalink
ci(vue-tsc): added job to run vue-tsc to validate strict types
Browse files Browse the repository at this point in the history
Signed-off-by: Lukas Mertens <[email protected]>
  • Loading branch information
lukas-mertens committed Oct 15, 2024
1 parent 3b125fd commit 3b14d5b
Showing 1 changed file with 12 additions and 1 deletion.
13 changes: 12 additions & 1 deletion .github/workflows/lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ on:
workflow_dispatch: {}

jobs:
package:
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
Expand All @@ -30,3 +30,14 @@ jobs:
fail_on_error: true
filter_mode: 'nofilter'
eslint_flags: '--ignore-path .gitignore .'

vue-tsc:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Setup node + pnpm install
uses: ./.github/actions/setup-node
with:
pnpm-version: 9
- name: Run Vue TSC
run: pnpm vue-tsc

0 comments on commit 3b14d5b

Please sign in to comment.