caching
This commit is contained in:
parent
c4daca8a1e
commit
90f47bdb60
3 changed files with 12380 additions and 6822 deletions
11
.github/workflows/deploy_to_firebase.yml
vendored
11
.github/workflows/deploy_to_firebase.yml
vendored
|
|
@ -16,10 +16,12 @@ jobs:
|
||||||
with:
|
with:
|
||||||
distribution: 'adopt'
|
distribution: 'adopt'
|
||||||
java-version: '11'
|
java-version: '11'
|
||||||
|
cache: gradle
|
||||||
- name: Setup Node
|
- name: Setup Node
|
||||||
uses: actions/setup-node@v3
|
uses: actions/setup-node@v3
|
||||||
with:
|
with:
|
||||||
node-version: 16
|
node-version: 16
|
||||||
|
cache: 'npm'
|
||||||
- name: Set up Ruby
|
- name: Set up Ruby
|
||||||
uses: ruby/setup-ruby@ec02537da5712d66d4d50a0f33b7eb52773b5ed1
|
uses: ruby/setup-ruby@ec02537da5712d66d4d50a0f33b7eb52773b5ed1
|
||||||
with:
|
with:
|
||||||
|
|
@ -27,8 +29,15 @@ jobs:
|
||||||
- name: Setup Fastlane
|
- name: Setup Fastlane
|
||||||
working-directory: ./android
|
working-directory: ./android
|
||||||
run: bundle install
|
run: bundle install
|
||||||
|
- name: node_modules cache
|
||||||
|
uses: actions/cache@v2
|
||||||
|
id: npm-cache
|
||||||
|
with:
|
||||||
|
path: node_modules
|
||||||
|
key: ${{ runner.os }}-npm-${{ hashFiles('**/package-lock.json') }}
|
||||||
|
restore-keys: ${{ runner.os }}-npm-${{ hashFiles('**/package-lock.json') }}
|
||||||
- name: Install Dependencies
|
- name: Install Dependencies
|
||||||
run: npm install
|
run: npm ci
|
||||||
- name: Restore Release Keystore
|
- name: Restore Release Keystore
|
||||||
env:
|
env:
|
||||||
keystore_base64: ${{ secrets.RELEASE_KEYSTORE_BASE64 }}
|
keystore_base64: ${{ secrets.RELEASE_KEYSTORE_BASE64 }}
|
||||||
|
|
|
||||||
12370
package-lock.json
generated
Normal file
12370
package-lock.json
generated
Normal file
File diff suppressed because it is too large
Load diff
Loading…
Add table
Add a link
Reference in a new issue