Skip to content

Commit

Permalink
chore: add services
Browse files Browse the repository at this point in the history
  • Loading branch information
johnsoncodehk committed Feb 13, 2024
1 parent 44aea9f commit 9f1e3ac
Show file tree
Hide file tree
Showing 4 changed files with 15 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 @@ -31,6 +31,7 @@ on:
- "-"
- astro
- mdx
- services
- vue
jobs:
init:
Expand Down Expand Up @@ -104,6 +105,7 @@ jobs:
suite:
- astro
- mdx
- services
- vue
fail-fast: false
steps:
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 @@ -36,6 +36,7 @@ on:
options:
- astro
- mdx
- services
- vue
jobs:
execute-selected-suite:
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 @@ -42,6 +42,7 @@ jobs:
suite:
- astro
- mdx
- services
- vue
fail-fast: false
steps:
Expand Down
11 changes: 11 additions & 0 deletions tests/services.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
import { runInRepo } from '../utils.ts'
import type { RunOptions } from '../types.js'

export async function test(options: RunOptions) {
await runInRepo({
...options,
repo: 'volarjs/services',
branch: 'master',
build: 'build',
})
}

0 comments on commit 9f1e3ac

Please sign in to comment.