Skip to content

Commit

Permalink
chore: Fix CI
Browse files Browse the repository at this point in the history
  • Loading branch information
mrousavy committed Apr 30, 2024
1 parent 264f6bf commit ad004a6
Show file tree
Hide file tree
Showing 4 changed files with 13 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .github/dependabot.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ updates:
labels:
- "dependencies"
- package-ecosystem: "gradle"
directory: "/android/"
directory: "/package/android/"
schedule:
interval: "weekly"
labels:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/build-ios.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ on:
- 'package/MMKV/**'

jobs:
build:
build_example:
name: Build iOS Example App
runs-on: macOS-latest
defaults:
Expand Down
7 changes: 5 additions & 2 deletions .github/workflows/notice-yarn-changes.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,14 +6,17 @@ jobs:
runs-on: ubuntu-latest
permissions:
pull-requests: write
defaults:
run:
working-directory: package/
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Notice yarn.lock changes
uses: Simek/yarn-lock-changes@main
uses: Simek/yarn-lock-changes@v0.12.0
with:
token: ${{ secrets.GITHUB_TOKEN }}
collapsibleThreshold: '25'
failOnDowngrade: 'false'
path: 'package/yarn.lock'
path: 'yarn.lock'
updateComment: 'true'
6 changes: 6 additions & 0 deletions .github/workflows/validate-js.yml
Original file line number Diff line number Diff line change
Expand Up @@ -73,6 +73,9 @@ jobs:
lint:
name: Lint JS (eslint, prettier)
runs-on: ubuntu-latest
defaults:
run:
working-directory: package/
steps:
- uses: actions/checkout@v4

Expand Down Expand Up @@ -105,6 +108,9 @@ jobs:
test:
name: Test JS
runs-on: ubuntu-latest
defaults:
run:
working-directory: package/
steps:
- uses: actions/checkout@v4

Expand Down

0 comments on commit ad004a6

Please sign in to comment.