Skip to content

Commit

Permalink
Split workflow in multiple jobs
Browse files Browse the repository at this point in the history
  • Loading branch information
sblaisot committed Oct 1, 2024
1 parent 82f5b91 commit 0501c34
Showing 1 changed file with 19 additions and 6 deletions.
25 changes: 19 additions & 6 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
@@ -1,7 +1,9 @@
on: pull_request
jobs:
build:
Lint:
runs-on: ubuntu-latest
# Continue to the next step even if this fails
continue-on-error: true
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
Expand All @@ -16,12 +18,23 @@ jobs:
# Continue to the next step even if this fails
continue-on-error: true

- name: Typecheck
run: npx vue-tsc --noEmit
# Continue to the next step even if this fails
continue-on-error: true

- name: Annotate Code Linting Results
uses: ataylorme/eslint-annotate-action@v2
with:
markdown-report-on-step-summary: true

Typecheck:
runs-on: ubuntu-latest
# Continue to the next step even if this fails
continue-on-error: true
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: 'lts/*'

- name: Install modules
run: npm ci

- name: Run Typecheck
run: npx vue-tsc --noEmit

0 comments on commit 0501c34

Please sign in to comment.