Skip to content

Commit

Permalink
add dependabot config
Browse files Browse the repository at this point in the history
  • Loading branch information
miquelbeltran committed Nov 6, 2024
1 parent b335fc9 commit 061dc03
Show file tree
Hide file tree
Showing 2 changed files with 53 additions and 0 deletions.
32 changes: 32 additions & 0 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
version: 2
updates:
# Dependencies updates config for SDK
- package-ecosystem: "npm"
directory: "/src"
schedule:
interval: "monthly"
commit-message:
prefix: "chore"
include: "scope"

# Dependencies updates config for examples
- package-ecosystem: "npm"
directory: "/demo"
schedule:
interval: "monthly"
commit-message:
prefix: "chore"
include: "scope"
ignore:
# Package in example is accessed by path,
# do not update in package.json.
- dependency-name: "raygun4reactnative"

# Github Actions dependencies updates config
- package-ecosystem: "github-actions"
directory: "/"
schedule:
interval: "monthly"
commit-message:
prefix: "chore"
include: "scope"
21 changes: 21 additions & 0 deletions .github/workflows/sdk.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
name: SDK CI
on: [ push, pull_request ]
jobs:
sdk-build:
runs-on: ubuntu-latest
defaults:
run:
working-directory: sdk
steps:
- name: Checkout repository
uses: actions/checkout@v4

- name: Setup Node
uses: actions/setup-node@v3
with:
node-version: '20'

- name: Run npm Install
run: npm install

# TODO: Check Lint

0 comments on commit 061dc03

Please sign in to comment.