Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 7 additions & 5 deletions .github/workflows/lint-ts.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,11 +4,13 @@ on:
pull_request:
branches: [main]
paths:
- ".github/workflows/lint-ts.yml"
- "packages/react-native-legal/**/*.jsx?"
- "packages/react-native-legal/**/*.tsx?"
- "examples/**/*.jsx?"
- "examples/**/*.tsx?"
- '.github/workflows/lint-ts.yml'
- 'packages/react-native-legal/**/*.jsx?'
- 'packages/react-native-legal/**/*.tsx?'
- 'packages/shared/**/*.[tj]sx?'
- 'packages/license-kit/**/*.[tj]sx?'
- 'examples/**/*.jsx?'
- 'examples/**/*.tsx?'

concurrency: ${{ github.workflow }}-${{ github.ref }}

Expand Down
6 changes: 4 additions & 2 deletions .github/workflows/test-e2e-android.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,8 @@ on:
- '.github/workflows/test-e2e-android.yaml'
- 'packages/react-native-legal/**/*.[tj]sx?'
- 'packages/react-native-legal/android/**'
- 'packages/shared/**/*.[tj]sx?'
- 'packages/license-kit/**/*.[tj]sx?'
- 'examples/bare-example/**/*.[tj]sx?'
- 'examples/bare-example/android/**'

Expand All @@ -32,7 +34,7 @@ jobs:
strategy:
fail-fast: false
matrix:
api-level: [ 30, 34, 35 ]
api-level: [30, 34, 35]
steps:
- name: Enable KVM group perms
run: |
Expand Down Expand Up @@ -75,7 +77,7 @@ jobs:
uses: gradle/actions/setup-gradle@v3

- name: Install example dependencies
run: yarn workspace react-native-legal-bare-example install --frozen-lockfile --immutable
run: yarn workspace react-native-legal-bare-example install --frozen-lockfile --immutable

- name: Bundle app
run: yarn workspace react-native-legal-bare-example build:android
Expand Down
6 changes: 4 additions & 2 deletions .github/workflows/test-e2e-ios.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,8 @@ on:
- '.github/workflows/test-e2e-ios.yaml'
- 'packages/react-native-legal/**/*.[tj]sx?'
- 'packages/react-native-legal/ios/**'
- 'packages/shared/**/*.[tj]sx?'
- 'packages/license-kit/**/*.[tj]sx?'
- 'examples/bare-example/**/*.[tj]sx?'
- 'examples/bare-example/ios/**'

Expand All @@ -32,7 +34,7 @@ jobs:
strategy:
fail-fast: false
matrix:
simulator: [ 'iPhone 16 Pro (18.5)', 'iPhone SE (3rd generation) (18.0)' ]
simulator: ['iPhone 16 Pro (18.5)', 'iPhone SE (3rd generation) (18.0)']
steps:
- name: Checkout Repo
uses: actions/checkout@v4
Expand All @@ -48,7 +50,7 @@ jobs:
target-platform: ios

- name: Install example dependencies
run: yarn workspace react-native-legal-bare-example install --frozen-lockfile --immutable
run: yarn workspace react-native-legal-bare-example install --frozen-lockfile --immutable

- name: Cache Pods
id: cache-pods
Expand Down
Loading