Skip to content

Commit

Permalink
updated workflow files
Browse files Browse the repository at this point in the history
Updated JS workflow files to run less
  • Loading branch information
Alex Risch authored and Alex Risch committed May 22, 2024
1 parent 00279ce commit 82906b9
Show file tree
Hide file tree
Showing 3 changed files with 24 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/ios-release.yml
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
name: Release to TestFlight
on:
push:
branches:
- main
push:
branches:
- main

jobs:
rebase:
Expand All @@ -25,4 +25,4 @@ jobs:

- name: Force push changes
run: |
git push --force-with-lease origin testflight
git push --force-with-lease origin testflight
10 changes: 10 additions & 0 deletions .github/workflows/typescript.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,16 @@
name: Typescript CI
on:
pull_request:
paths:
# JS Specific Files
- 'src/**'
- 'e2e/**'
- 'tsconfig.json'
- 'App.tsx'
# Build Files
- 'yarn.lock'
- 'package.json'
- 'patches/**'
jobs:
tsc:
runs-on: ubuntu-latest
Expand Down
10 changes: 10 additions & 0 deletions .github/workflows/unit.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,16 @@
name: Jest Unit Tests
on:
pull_request:
paths:
# JS Specific Files
- 'src/**'
- 'e2e/**'
- 'tsconfig.json'
- 'App.tsx'
# Build Files
- 'yarn.lock'
- 'package.json'
- 'patches/**'
jobs:
test:
runs-on: ubuntu-latest
Expand Down

0 comments on commit 82906b9

Please sign in to comment.