Skip to content

Commit

Permalink
Merge pull request EVerest#206 from EVerest/10-12-ci-vue-tsc
Browse files Browse the repository at this point in the history
ci(vue-tsc): added job to run vue-tsc to validate strict types
  • Loading branch information
lukas-mertens authored Oct 15, 2024
2 parents efdd5a8 + f7ac645 commit c94d7f6
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 c94d7f6

Please sign in to comment.