Skip to content

Commit

Permalink
feat: integrate language-tools (#9)
Browse files Browse the repository at this point in the history
  • Loading branch information
so1ve authored Oct 8, 2023
1 parent 7790364 commit 8ab90e5
Show file tree
Hide file tree
Showing 4 changed files with 16 additions and 0 deletions.
2 changes: 2 additions & 0 deletions .github/workflows/ecosystem-ci-from-pr.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,7 @@ on:
type: choice
options:
- "-"
- language-tools
# - naive-ui
- nuxt
- pinia
Expand Down Expand Up @@ -95,6 +96,7 @@ jobs:
strategy:
matrix:
suite:
- language-tools
# - naive-ui
- nuxt
- pinia
Expand Down
1 change: 1 addition & 0 deletions .github/workflows/ecosystem-ci-selected.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,7 @@ on:
required: true
type: choice
options:
- language-tools
# - naive-ui
- nuxt
- pinia
Expand Down
1 change: 1 addition & 0 deletions .github/workflows/ecosystem-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -40,6 +40,7 @@ jobs:
strategy:
matrix:
suite:
- language-tools
# - naive-ui
- nuxt
- pinia
Expand Down
12 changes: 12 additions & 0 deletions tests/language-tools.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
import { runInRepo } from '../utils'
import { RunOptions } from '../types'

export async function test(options: RunOptions) {
await runInRepo({
...options,
repo: 'vuejs/language-tools',
branch: 'master',
build: 'build',
test: 'test',
})
}

0 comments on commit 8ab90e5

Please sign in to comment.