-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
b335fc9
commit 061dc03
Showing
2 changed files
with
53 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |