Skip to content

Commit

Permalink
.github: Add CI and dependabot for integration
Browse files Browse the repository at this point in the history
  • Loading branch information
tbantle22 committed Apr 24, 2024
1 parent 642b78b commit 74767c0
Show file tree
Hide file tree
Showing 2 changed files with 38 additions and 0 deletions.
13 changes: 13 additions & 0 deletions .github/dependabot.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
version: 2
updates:
- package-ecosystem: npm
directory: "/packages/dolt/integrations"
schedule:
interval: monthly
time: "06:30"
timezone: America/Los_Angeles
open-pull-requests-limit: 5
reviewers:
- liuliu-dev
labels:
- dependencies
25 changes: 25 additions & 0 deletions .github/workflows/ci-dolt-integration.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
name: Run CI on dolt/integration
on:
pull_request:
paths:
- "packages/dolt/integration/**"
workflow_dispatch:

concurrency:
group: ci-integration-${{ github.event.pull_request.number || github.ref }}
cancel-in-progress: true

jobs:
ci:
runs-on: ubuntu-22.04
steps:
- name: Checkout code
uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: "18"
- name: Install and run CI
working-directory: ./packages/dolt/integration
run: |
yarn
yarn run ci

0 comments on commit 74767c0

Please sign in to comment.