Skip to content

Commit

Permalink
clean up
Browse files Browse the repository at this point in the history
  • Loading branch information
BilligsterUser committed Mar 29, 2024
1 parent 4a89535 commit 937e054
Show file tree
Hide file tree
Showing 3 changed files with 20 additions and 5 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/actions/build/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,13 +33,13 @@ jobs:
- uses: actions/setup-node@v4
with:
cache: 'npm'
cache: npm
cache-dependency-path: |
${{ env.GITHUB_WORKSPACE }}/package-lock.json
- uses: actions/setup-java@v4
with:
distribution: 'temurin'
distribution: temurin
java-version: '17' # The JDK version to make available on the path.
# ${{ env.GITHUB_WORKSPACE }}/**/*gradle*
# ${{ env.GITHUB_WORKSPACE }}/*gradle*
Expand Down
17 changes: 17 additions & 0 deletions .github/workflows/android.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
name: Build-for-android-production

on:
push :
branches : [release]
env:
EXPO_NO_TELEMETRY: 1
SENTRY_DISABLE_AUTO_UPLOAD: true
jobs:
composite:
name: build-for-android-base-composite
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- run: ls -alh ./.github/
- id: build-base
uses: ./.github/workflows/actions/build
4 changes: 1 addition & 3 deletions .github/workflows/node.js.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,3 @@
# This workflow will do a clean installation of node dependencies, cache/restore them, build the source code and tests across different versions of node
# For more information see: https://docs.github.com/en/actions/automating-builds-and-tests/building-and-testing-nodejs

name: Node.js CI

Expand Down Expand Up @@ -28,7 +26,7 @@ jobs:
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
cache: "npm"
cache: npm
- run: npm install
- run: npm run lint

Expand Down

0 comments on commit 937e054

Please sign in to comment.