Market buy sell #1493
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Functions | Tangle - Emulated Unit Tests | |
on: | |
pull_request: | |
paths: | |
- packages/functions/** | |
jobs: | |
npm-install: | |
runs-on: ubuntu-latest | |
timeout-minutes: 10 | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-node@v4 | |
with: | |
node-version: 20.x | |
- uses: actions/cache@v3 | |
id: cache | |
with: | |
path: | | |
node_modules | |
packages/functions/node_modules | |
packages/interfaces/node_modules | |
key: ${{ runner.os }}-modules-${{ hashFiles('**/package.json') }} | |
- name: Install Dependencies | |
if: steps.cache.outputs.cache-hit != 'true' | |
run: npm run build:functions | |
chunk_0: | |
needs: npm-install | |
runs-on: ubuntu-latest | |
timeout-minutes: 20 | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-node@v4 | |
with: | |
node-version: 20.x | |
- uses: actions/cache@v3 | |
with: | |
path: | | |
node_modules | |
packages/functions/node_modules | |
packages/interfaces/node_modules | |
key: ${{ runner.os }}-modules-${{ hashFiles('**/package.json') }} | |
- name: Init | |
run: | | |
npm run build:functions | |
npm install -g firebase-tools | |
- name: Test | |
working-directory: packages/functions | |
run: | | |
export GOOGLE_APPLICATION_CREDENTIALS="./test-service-account-key.json" | |
npm run milestone-sync & | |
firebase emulators:exec " | |
npm run test-tangle:ci -- --forceExit --findRelatedTests ./test-tangle/address.spec.ts && | |
npm run test-tangle:ci -- --forceExit --findRelatedTests ./test-tangle/auction-tangle/auction.bit.tangle.spec.ts && | |
npm run test-tangle:ci -- --forceExit --findRelatedTests ./test-tangle/award-tangle/award-tangle_1.spec.ts | |
" --project dev --only functions,firestore,storage,ui,auth --export-on-exit=./firestore-data | |
- name: Archive firestore data | |
uses: actions/upload-artifact@v3 | |
if: ${{ failure() }} | |
with: | |
name: firestore-data-test-tangle-chunk_0 | |
path: ./packages/functions/firestore-data/ | |
retention-days: 1 | |
chunk_1: | |
needs: npm-install | |
runs-on: ubuntu-latest | |
timeout-minutes: 20 | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-node@v4 | |
with: | |
node-version: 20.x | |
- uses: actions/cache@v3 | |
with: | |
path: | | |
node_modules | |
packages/functions/node_modules | |
packages/interfaces/node_modules | |
key: ${{ runner.os }}-modules-${{ hashFiles('**/package.json') }} | |
- name: Init | |
run: | | |
npm run build:functions | |
npm install -g firebase-tools | |
- name: Test | |
working-directory: packages/functions | |
run: | | |
export GOOGLE_APPLICATION_CREDENTIALS="./test-service-account-key.json" | |
npm run milestone-sync & | |
firebase emulators:exec " | |
npm run test-tangle:ci -- --forceExit --findRelatedTests ./test-tangle/award-tangle/award-tangle_2.spec.ts && | |
npm run test-tangle:ci -- --forceExit --findRelatedTests ./test-tangle/award-tangle/award-tangle_3.spec.ts && | |
npm run test-tangle:ci -- --forceExit --findRelatedTests ./test-tangle/award-tangle/award-tangle_4.spec.ts | |
" --project dev --only functions,firestore,storage,ui,auth --export-on-exit=./firestore-data | |
- name: Archive firestore data | |
uses: actions/upload-artifact@v3 | |
if: ${{ failure() }} | |
with: | |
name: firestore-data-test-tangle-chunk_1 | |
path: ./packages/functions/firestore-data/ | |
retention-days: 1 | |
chunk_2: | |
needs: npm-install | |
runs-on: ubuntu-latest | |
timeout-minutes: 20 | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-node@v4 | |
with: | |
node-version: 20.x | |
- uses: actions/cache@v3 | |
with: | |
path: | | |
node_modules | |
packages/functions/node_modules | |
packages/interfaces/node_modules | |
key: ${{ runner.os }}-modules-${{ hashFiles('**/package.json') }} | |
- name: Init | |
run: | | |
npm run build:functions | |
npm install -g firebase-tools | |
- name: Test | |
working-directory: packages/functions | |
run: | | |
export GOOGLE_APPLICATION_CREDENTIALS="./test-service-account-key.json" | |
npm run milestone-sync & | |
firebase emulators:exec " | |
npm run test-tangle:ci -- --forceExit --findRelatedTests ./test-tangle/award-tangle/award-tangle_5.spec.ts && | |
npm run test-tangle:ci -- --forceExit --findRelatedTests ./test-tangle/award-tangle/award-tangle_6.spec.ts && | |
npm run test-tangle:ci -- --forceExit --findRelatedTests ./test-tangle/award-tangle/award-tangle_7.spec.ts | |
" --project dev --only functions,firestore,storage,ui,auth --export-on-exit=./firestore-data | |
- name: Archive firestore data | |
uses: actions/upload-artifact@v3 | |
if: ${{ failure() }} | |
with: | |
name: firestore-data-test-tangle-chunk_2 | |
path: ./packages/functions/firestore-data/ | |
retention-days: 1 | |
chunk_3: | |
needs: npm-install | |
runs-on: ubuntu-latest | |
timeout-minutes: 20 | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-node@v4 | |
with: | |
node-version: 20.x | |
- uses: actions/cache@v3 | |
with: | |
path: | | |
node_modules | |
packages/functions/node_modules | |
packages/interfaces/node_modules | |
key: ${{ runner.os }}-modules-${{ hashFiles('**/package.json') }} | |
- name: Init | |
run: | | |
npm run build:functions | |
npm install -g firebase-tools | |
- name: Test | |
working-directory: packages/functions | |
run: | | |
export GOOGLE_APPLICATION_CREDENTIALS="./test-service-account-key.json" | |
npm run milestone-sync & | |
firebase emulators:exec " | |
npm run test-tangle:ci -- --forceExit --findRelatedTests ./test-tangle/award/award_1_b.spec.ts && | |
npm run test-tangle:ci -- --forceExit --findRelatedTests ./test-tangle/award/award_1.spec.ts && | |
npm run test-tangle:ci -- --forceExit --findRelatedTests ./test-tangle/award/award_10.spec.ts | |
" --project dev --only functions,firestore,storage,ui,auth --export-on-exit=./firestore-data | |
- name: Archive firestore data | |
uses: actions/upload-artifact@v3 | |
if: ${{ failure() }} | |
with: | |
name: firestore-data-test-tangle-chunk_3 | |
path: ./packages/functions/firestore-data/ | |
retention-days: 1 | |
chunk_4: | |
needs: npm-install | |
runs-on: ubuntu-latest | |
timeout-minutes: 20 | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-node@v4 | |
with: | |
node-version: 20.x | |
- uses: actions/cache@v3 | |
with: | |
path: | | |
node_modules | |
packages/functions/node_modules | |
packages/interfaces/node_modules | |
key: ${{ runner.os }}-modules-${{ hashFiles('**/package.json') }} | |
- name: Init | |
run: | | |
npm run build:functions | |
npm install -g firebase-tools | |
- name: Test | |
working-directory: packages/functions | |
run: | | |
export GOOGLE_APPLICATION_CREDENTIALS="./test-service-account-key.json" | |
npm run milestone-sync & | |
firebase emulators:exec " | |
npm run test-tangle:ci -- --forceExit --findRelatedTests ./test-tangle/award/award_2.spec.ts && | |
npm run test-tangle:ci -- --forceExit --findRelatedTests ./test-tangle/award/award_3.spec.ts && | |
npm run test-tangle:ci -- --forceExit --findRelatedTests ./test-tangle/award/award_4.spec.ts | |
" --project dev --only functions,firestore,storage,ui,auth --export-on-exit=./firestore-data | |
- name: Archive firestore data | |
uses: actions/upload-artifact@v3 | |
if: ${{ failure() }} | |
with: | |
name: firestore-data-test-tangle-chunk_4 | |
path: ./packages/functions/firestore-data/ | |
retention-days: 1 | |
chunk_5: | |
needs: npm-install | |
runs-on: ubuntu-latest | |
timeout-minutes: 20 | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-node@v4 | |
with: | |
node-version: 20.x | |
- uses: actions/cache@v3 | |
with: | |
path: | | |
node_modules | |
packages/functions/node_modules | |
packages/interfaces/node_modules | |
key: ${{ runner.os }}-modules-${{ hashFiles('**/package.json') }} | |
- name: Init | |
run: | | |
npm run build:functions | |
npm install -g firebase-tools | |
- name: Test | |
working-directory: packages/functions | |
run: | | |
export GOOGLE_APPLICATION_CREDENTIALS="./test-service-account-key.json" | |
npm run milestone-sync & | |
firebase emulators:exec " | |
npm run test-tangle:ci -- --forceExit --findRelatedTests ./test-tangle/award/award_5.spec.ts && | |
npm run test-tangle:ci -- --forceExit --findRelatedTests ./test-tangle/award/award_6.spec.ts && | |
npm run test-tangle:ci -- --forceExit --findRelatedTests ./test-tangle/award/award_7.spec.ts | |
" --project dev --only functions,firestore,storage,ui,auth --export-on-exit=./firestore-data | |
- name: Archive firestore data | |
uses: actions/upload-artifact@v3 | |
if: ${{ failure() }} | |
with: | |
name: firestore-data-test-tangle-chunk_5 | |
path: ./packages/functions/firestore-data/ | |
retention-days: 1 | |
chunk_6: | |
needs: npm-install | |
runs-on: ubuntu-latest | |
timeout-minutes: 20 | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-node@v4 | |
with: | |
node-version: 20.x | |
- uses: actions/cache@v3 | |
with: | |
path: | | |
node_modules | |
packages/functions/node_modules | |
packages/interfaces/node_modules | |
key: ${{ runner.os }}-modules-${{ hashFiles('**/package.json') }} | |
- name: Init | |
run: | | |
npm run build:functions | |
npm install -g firebase-tools | |
- name: Test | |
working-directory: packages/functions | |
run: | | |
export GOOGLE_APPLICATION_CREDENTIALS="./test-service-account-key.json" | |
npm run milestone-sync & | |
firebase emulators:exec " | |
npm run test-tangle:ci -- --forceExit --findRelatedTests ./test-tangle/award/award_8.spec.ts && | |
npm run test-tangle:ci -- --forceExit --findRelatedTests ./test-tangle/award/award_9.spec.ts && | |
npm run test-tangle:ci -- --forceExit --findRelatedTests ./test-tangle/base-token-trading/base-token-trading_1.spec.ts | |
" --project dev --only functions,firestore,storage,ui,auth --export-on-exit=./firestore-data | |
- name: Archive firestore data | |
uses: actions/upload-artifact@v3 | |
if: ${{ failure() }} | |
with: | |
name: firestore-data-test-tangle-chunk_6 | |
path: ./packages/functions/firestore-data/ | |
retention-days: 1 | |
chunk_7: | |
needs: npm-install | |
runs-on: ubuntu-latest | |
timeout-minutes: 20 | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-node@v4 | |
with: | |
node-version: 20.x | |
- uses: actions/cache@v3 | |
with: | |
path: | | |
node_modules | |
packages/functions/node_modules | |
packages/interfaces/node_modules | |
key: ${{ runner.os }}-modules-${{ hashFiles('**/package.json') }} | |
- name: Init | |
run: | | |
npm run build:functions | |
npm install -g firebase-tools | |
- name: Test | |
working-directory: packages/functions | |
run: | | |
export GOOGLE_APPLICATION_CREDENTIALS="./test-service-account-key.json" | |
npm run milestone-sync & | |
firebase emulators:exec " | |
npm run test-tangle:ci -- --forceExit --findRelatedTests ./test-tangle/base-token-trading/base-token-trading_10.spec.ts && | |
npm run test-tangle:ci -- --forceExit --findRelatedTests ./test-tangle/base-token-trading/base-token-trading_11_a.spec.ts && | |
npm run test-tangle:ci -- --forceExit --findRelatedTests ./test-tangle/base-token-trading/base-token-trading_11_b.spec.ts | |
" --project dev --only functions,firestore,storage,ui,auth --export-on-exit=./firestore-data | |
- name: Archive firestore data | |
uses: actions/upload-artifact@v3 | |
if: ${{ failure() }} | |
with: | |
name: firestore-data-test-tangle-chunk_7 | |
path: ./packages/functions/firestore-data/ | |
retention-days: 1 | |
chunk_8: | |
needs: npm-install | |
runs-on: ubuntu-latest | |
timeout-minutes: 20 | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-node@v4 | |
with: | |
node-version: 20.x | |
- uses: actions/cache@v3 | |
with: | |
path: | | |
node_modules | |
packages/functions/node_modules | |
packages/interfaces/node_modules | |
key: ${{ runner.os }}-modules-${{ hashFiles('**/package.json') }} | |
- name: Init | |
run: | | |
npm run build:functions | |
npm install -g firebase-tools | |
- name: Test | |
working-directory: packages/functions | |
run: | | |
export GOOGLE_APPLICATION_CREDENTIALS="./test-service-account-key.json" | |
npm run milestone-sync & | |
firebase emulators:exec " | |
npm run test-tangle:ci -- --forceExit --findRelatedTests ./test-tangle/base-token-trading/base-token-trading_11_c.spec.ts && | |
npm run test-tangle:ci -- --forceExit --findRelatedTests ./test-tangle/base-token-trading/base-token-trading_11_d.spec.ts && | |
npm run test-tangle:ci -- --forceExit --findRelatedTests ./test-tangle/base-token-trading/base-token-trading_12.spec.ts | |
" --project dev --only functions,firestore,storage,ui,auth --export-on-exit=./firestore-data | |
- name: Archive firestore data | |
uses: actions/upload-artifact@v3 | |
if: ${{ failure() }} | |
with: | |
name: firestore-data-test-tangle-chunk_8 | |
path: ./packages/functions/firestore-data/ | |
retention-days: 1 | |
chunk_9: | |
needs: npm-install | |
runs-on: ubuntu-latest | |
timeout-minutes: 20 | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-node@v4 | |
with: | |
node-version: 20.x | |
- uses: actions/cache@v3 | |
with: | |
path: | | |
node_modules | |
packages/functions/node_modules | |
packages/interfaces/node_modules | |
key: ${{ runner.os }}-modules-${{ hashFiles('**/package.json') }} | |
- name: Init | |
run: | | |
npm run build:functions | |
npm install -g firebase-tools | |
- name: Test | |
working-directory: packages/functions | |
run: | | |
export GOOGLE_APPLICATION_CREDENTIALS="./test-service-account-key.json" | |
npm run milestone-sync & | |
firebase emulators:exec " | |
npm run test-tangle:ci -- --forceExit --findRelatedTests ./test-tangle/base-token-trading/base-token-trading_13.spec.ts && | |
npm run test-tangle:ci -- --forceExit --findRelatedTests ./test-tangle/base-token-trading/base-token-trading_14.spec.ts && | |
npm run test-tangle:ci -- --forceExit --findRelatedTests ./test-tangle/base-token-trading/base-token-trading_15.spec.ts | |
" --project dev --only functions,firestore,storage,ui,auth --export-on-exit=./firestore-data | |
- name: Archive firestore data | |
uses: actions/upload-artifact@v3 | |
if: ${{ failure() }} | |
with: | |
name: firestore-data-test-tangle-chunk_9 | |
path: ./packages/functions/firestore-data/ | |
retention-days: 1 | |
chunk_10: | |
needs: npm-install | |
runs-on: ubuntu-latest | |
timeout-minutes: 20 | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-node@v4 | |
with: | |
node-version: 20.x | |
- uses: actions/cache@v3 | |
with: | |
path: | | |
node_modules | |
packages/functions/node_modules | |
packages/interfaces/node_modules | |
key: ${{ runner.os }}-modules-${{ hashFiles('**/package.json') }} | |
- name: Init | |
run: | | |
npm run build:functions | |
npm install -g firebase-tools | |
- name: Test | |
working-directory: packages/functions | |
run: | | |
export GOOGLE_APPLICATION_CREDENTIALS="./test-service-account-key.json" | |
npm run milestone-sync & | |
firebase emulators:exec " | |
npm run test-tangle:ci -- --forceExit --findRelatedTests ./test-tangle/base-token-trading/base-token-trading_16.spec.ts && | |
npm run test-tangle:ci -- --forceExit --findRelatedTests ./test-tangle/base-token-trading/base-token-trading_17.spec.ts && | |
npm run test-tangle:ci -- --forceExit --findRelatedTests ./test-tangle/base-token-trading/base-token-trading_2.spec.ts | |
" --project dev --only functions,firestore,storage,ui,auth --export-on-exit=./firestore-data | |
- name: Archive firestore data | |
uses: actions/upload-artifact@v3 | |
if: ${{ failure() }} | |
with: | |
name: firestore-data-test-tangle-chunk_10 | |
path: ./packages/functions/firestore-data/ | |
retention-days: 1 | |
chunk_11: | |
needs: npm-install | |
runs-on: ubuntu-latest | |
timeout-minutes: 20 | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-node@v4 | |
with: | |
node-version: 20.x | |
- uses: actions/cache@v3 | |
with: | |
path: | | |
node_modules | |
packages/functions/node_modules | |
packages/interfaces/node_modules | |
key: ${{ runner.os }}-modules-${{ hashFiles('**/package.json') }} | |
- name: Init | |
run: | | |
npm run build:functions | |
npm install -g firebase-tools | |
- name: Test | |
working-directory: packages/functions | |
run: | | |
export GOOGLE_APPLICATION_CREDENTIALS="./test-service-account-key.json" | |
npm run milestone-sync & | |
firebase emulators:exec " | |
npm run test-tangle:ci -- --forceExit --findRelatedTests ./test-tangle/base-token-trading/base-token-trading_3.spec.ts && | |
npm run test-tangle:ci -- --forceExit --findRelatedTests ./test-tangle/base-token-trading/base-token-trading_4.spec.ts && | |
npm run test-tangle:ci -- --forceExit --findRelatedTests ./test-tangle/base-token-trading/base-token-trading_5.spec.ts | |
" --project dev --only functions,firestore,storage,ui,auth --export-on-exit=./firestore-data | |
- name: Archive firestore data | |
uses: actions/upload-artifact@v3 | |
if: ${{ failure() }} | |
with: | |
name: firestore-data-test-tangle-chunk_11 | |
path: ./packages/functions/firestore-data/ | |
retention-days: 1 | |
chunk_12: | |
needs: npm-install | |
runs-on: ubuntu-latest | |
timeout-minutes: 20 | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-node@v4 | |
with: | |
node-version: 20.x | |
- uses: actions/cache@v3 | |
with: | |
path: | | |
node_modules | |
packages/functions/node_modules | |
packages/interfaces/node_modules | |
key: ${{ runner.os }}-modules-${{ hashFiles('**/package.json') }} | |
- name: Init | |
run: | | |
npm run build:functions | |
npm install -g firebase-tools | |
- name: Test | |
working-directory: packages/functions | |
run: | | |
export GOOGLE_APPLICATION_CREDENTIALS="./test-service-account-key.json" | |
npm run milestone-sync & | |
firebase emulators:exec " | |
npm run test-tangle:ci -- --forceExit --findRelatedTests ./test-tangle/base-token-trading/base-token-trading_6.spec.ts && | |
npm run test-tangle:ci -- --forceExit --findRelatedTests ./test-tangle/base-token-trading/base-token-trading_7.spec.ts && | |
npm run test-tangle:ci -- --forceExit --findRelatedTests ./test-tangle/base-token-trading/base-token-trading_8.spec.ts | |
" --project dev --only functions,firestore,storage,ui,auth --export-on-exit=./firestore-data | |
- name: Archive firestore data | |
uses: actions/upload-artifact@v3 | |
if: ${{ failure() }} | |
with: | |
name: firestore-data-test-tangle-chunk_12 | |
path: ./packages/functions/firestore-data/ | |
retention-days: 1 | |
chunk_13: | |
needs: npm-install | |
runs-on: ubuntu-latest | |
timeout-minutes: 20 | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-node@v4 | |
with: | |
node-version: 20.x | |
- uses: actions/cache@v3 | |
with: | |
path: | | |
node_modules | |
packages/functions/node_modules | |
packages/interfaces/node_modules | |
key: ${{ runner.os }}-modules-${{ hashFiles('**/package.json') }} | |
- name: Init | |
run: | | |
npm run build:functions | |
npm install -g firebase-tools | |
- name: Test | |
working-directory: packages/functions | |
run: | | |
export GOOGLE_APPLICATION_CREDENTIALS="./test-service-account-key.json" | |
npm run milestone-sync & | |
firebase emulators:exec " | |
npm run test-tangle:ci -- --forceExit --findRelatedTests ./test-tangle/base-token-trading/base-token-trading_9.spec.ts && | |
npm run test-tangle:ci -- --forceExit --findRelatedTests ./test-tangle/collection-minting/collection-minting_1.spec.ts && | |
npm run test-tangle:ci -- --forceExit --findRelatedTests ./test-tangle/collection-minting/collection-minting_10.spec.ts | |
" --project dev --only functions,firestore,storage,ui,auth --export-on-exit=./firestore-data | |
- name: Archive firestore data | |
uses: actions/upload-artifact@v3 | |
if: ${{ failure() }} | |
with: | |
name: firestore-data-test-tangle-chunk_13 | |
path: ./packages/functions/firestore-data/ | |
retention-days: 1 | |
chunk_14: | |
needs: npm-install | |
runs-on: ubuntu-latest | |
timeout-minutes: 20 | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-node@v4 | |
with: | |
node-version: 20.x | |
- uses: actions/cache@v3 | |
with: | |
path: | | |
node_modules | |
packages/functions/node_modules | |
packages/interfaces/node_modules | |
key: ${{ runner.os }}-modules-${{ hashFiles('**/package.json') }} | |
- name: Init | |
run: | | |
npm run build:functions | |
npm install -g firebase-tools | |
- name: Test | |
working-directory: packages/functions | |
run: | | |
export GOOGLE_APPLICATION_CREDENTIALS="./test-service-account-key.json" | |
npm run milestone-sync & | |
firebase emulators:exec " | |
npm run test-tangle:ci -- --forceExit --findRelatedTests ./test-tangle/collection-minting/collection-minting_11.spec.ts && | |
npm run test-tangle:ci -- --forceExit --findRelatedTests ./test-tangle/collection-minting/collection-minting_12.spec.ts && | |
npm run test-tangle:ci -- --forceExit --findRelatedTests ./test-tangle/collection-minting/collection-minting_2.spec.ts | |
" --project dev --only functions,firestore,storage,ui,auth --export-on-exit=./firestore-data | |
- name: Archive firestore data | |
uses: actions/upload-artifact@v3 | |
if: ${{ failure() }} | |
with: | |
name: firestore-data-test-tangle-chunk_14 | |
path: ./packages/functions/firestore-data/ | |
retention-days: 1 | |
chunk_15: | |
needs: npm-install | |
runs-on: ubuntu-latest | |
timeout-minutes: 20 | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-node@v4 | |
with: | |
node-version: 20.x | |
- uses: actions/cache@v3 | |
with: | |
path: | | |
node_modules | |
packages/functions/node_modules | |
packages/interfaces/node_modules | |
key: ${{ runner.os }}-modules-${{ hashFiles('**/package.json') }} | |
- name: Init | |
run: | | |
npm run build:functions | |
npm install -g firebase-tools | |
- name: Test | |
working-directory: packages/functions | |
run: | | |
export GOOGLE_APPLICATION_CREDENTIALS="./test-service-account-key.json" | |
npm run milestone-sync & | |
firebase emulators:exec " | |
npm run test-tangle:ci -- --forceExit --findRelatedTests ./test-tangle/collection-minting/collection-minting_4_a.spec.ts && | |
npm run test-tangle:ci -- --forceExit --findRelatedTests ./test-tangle/collection-minting/collection-minting_4_b.spec.ts && | |
npm run test-tangle:ci -- --forceExit --findRelatedTests ./test-tangle/collection-minting/collection-minting_4_c.spec.ts | |
" --project dev --only functions,firestore,storage,ui,auth --export-on-exit=./firestore-data | |
- name: Archive firestore data | |
uses: actions/upload-artifact@v3 | |
if: ${{ failure() }} | |
with: | |
name: firestore-data-test-tangle-chunk_15 | |
path: ./packages/functions/firestore-data/ | |
retention-days: 1 | |
chunk_16: | |
needs: npm-install | |
runs-on: ubuntu-latest | |
timeout-minutes: 20 | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-node@v4 | |
with: | |
node-version: 20.x | |
- uses: actions/cache@v3 | |
with: | |
path: | | |
node_modules | |
packages/functions/node_modules | |
packages/interfaces/node_modules | |
key: ${{ runner.os }}-modules-${{ hashFiles('**/package.json') }} | |
- name: Init | |
run: | | |
npm run build:functions | |
npm install -g firebase-tools | |
- name: Test | |
working-directory: packages/functions | |
run: | | |
export GOOGLE_APPLICATION_CREDENTIALS="./test-service-account-key.json" | |
npm run milestone-sync & | |
firebase emulators:exec " | |
npm run test-tangle:ci -- --forceExit --findRelatedTests ./test-tangle/collection-minting/collection-minting_5.spec.ts && | |
npm run test-tangle:ci -- --forceExit --findRelatedTests ./test-tangle/collection-minting/collection-minting_6.spec.ts && | |
npm run test-tangle:ci -- --forceExit --findRelatedTests ./test-tangle/collection-minting/collection-minting_7.spec.ts | |
" --project dev --only functions,firestore,storage,ui,auth --export-on-exit=./firestore-data | |
- name: Archive firestore data | |
uses: actions/upload-artifact@v3 | |
if: ${{ failure() }} | |
with: | |
name: firestore-data-test-tangle-chunk_16 | |
path: ./packages/functions/firestore-data/ | |
retention-days: 1 | |
chunk_17: | |
needs: npm-install | |
runs-on: ubuntu-latest | |
timeout-minutes: 20 | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-node@v4 | |
with: | |
node-version: 20.x | |
- uses: actions/cache@v3 | |
with: | |
path: | | |
node_modules | |
packages/functions/node_modules | |
packages/interfaces/node_modules | |
key: ${{ runner.os }}-modules-${{ hashFiles('**/package.json') }} | |
- name: Init | |
run: | | |
npm run build:functions | |
npm install -g firebase-tools | |
- name: Test | |
working-directory: packages/functions | |
run: | | |
export GOOGLE_APPLICATION_CREDENTIALS="./test-service-account-key.json" | |
npm run milestone-sync & | |
firebase emulators:exec " | |
npm run test-tangle:ci -- --forceExit --findRelatedTests ./test-tangle/collection-minting/collection-minting_8.spec.ts && | |
npm run test-tangle:ci -- --forceExit --findRelatedTests ./test-tangle/collection-minting/collection-minting_9.spec.ts && | |
npm run test-tangle:ci -- --forceExit --findRelatedTests ./test-tangle/metadata-nft/mint-metadata-nft_1_b.spec.ts | |
" --project dev --only functions,firestore,storage,ui,auth --export-on-exit=./firestore-data | |
- name: Archive firestore data | |
uses: actions/upload-artifact@v3 | |
if: ${{ failure() }} | |
with: | |
name: firestore-data-test-tangle-chunk_17 | |
path: ./packages/functions/firestore-data/ | |
retention-days: 1 | |
chunk_18: | |
needs: npm-install | |
runs-on: ubuntu-latest | |
timeout-minutes: 20 | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-node@v4 | |
with: | |
node-version: 20.x | |
- uses: actions/cache@v3 | |
with: | |
path: | | |
node_modules | |
packages/functions/node_modules | |
packages/interfaces/node_modules | |
key: ${{ runner.os }}-modules-${{ hashFiles('**/package.json') }} | |
- name: Init | |
run: | | |
npm run build:functions | |
npm install -g firebase-tools | |
- name: Test | |
working-directory: packages/functions | |
run: | | |
export GOOGLE_APPLICATION_CREDENTIALS="./test-service-account-key.json" | |
npm run milestone-sync & | |
firebase emulators:exec " | |
npm run test-tangle:ci -- --forceExit --findRelatedTests ./test-tangle/metadata-nft/mint-metadata-nft_1.spec.ts && | |
npm run test-tangle:ci -- --forceExit --findRelatedTests ./test-tangle/metadata-nft/mint-metadata-nft_2.spec.ts && | |
npm run test-tangle:ci -- --forceExit --findRelatedTests ./test-tangle/metadata-nft/mint-metadata-nft_3_b.spec.ts | |
" --project dev --only functions,firestore,storage,ui,auth --export-on-exit=./firestore-data | |
- name: Archive firestore data | |
uses: actions/upload-artifact@v3 | |
if: ${{ failure() }} | |
with: | |
name: firestore-data-test-tangle-chunk_18 | |
path: ./packages/functions/firestore-data/ | |
retention-days: 1 | |
chunk_19: | |
needs: npm-install | |
runs-on: ubuntu-latest | |
timeout-minutes: 20 | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-node@v4 | |
with: | |
node-version: 20.x | |
- uses: actions/cache@v3 | |
with: | |
path: | | |
node_modules | |
packages/functions/node_modules | |
packages/interfaces/node_modules | |
key: ${{ runner.os }}-modules-${{ hashFiles('**/package.json') }} | |
- name: Init | |
run: | | |
npm run build:functions | |
npm install -g firebase-tools | |
- name: Test | |
working-directory: packages/functions | |
run: | | |
export GOOGLE_APPLICATION_CREDENTIALS="./test-service-account-key.json" | |
npm run milestone-sync & | |
firebase emulators:exec " | |
npm run test-tangle:ci -- --forceExit --findRelatedTests ./test-tangle/metadata-nft/mint-metadata-nft_3.spec.ts && | |
npm run test-tangle:ci -- --forceExit --findRelatedTests ./test-tangle/metadata-nft/mint-metadata-nft_4.spec.ts && | |
npm run test-tangle:ci -- --forceExit --findRelatedTests ./test-tangle/metadata-nft/mint-metadata-nft_5_b.spec.ts | |
" --project dev --only functions,firestore,storage,ui,auth --export-on-exit=./firestore-data | |
- name: Archive firestore data | |
uses: actions/upload-artifact@v3 | |
if: ${{ failure() }} | |
with: | |
name: firestore-data-test-tangle-chunk_19 | |
path: ./packages/functions/firestore-data/ | |
retention-days: 1 | |
chunk_20: | |
needs: npm-install | |
runs-on: ubuntu-latest | |
timeout-minutes: 20 | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-node@v4 | |
with: | |
node-version: 20.x | |
- uses: actions/cache@v3 | |
with: | |
path: | | |
node_modules | |
packages/functions/node_modules | |
packages/interfaces/node_modules | |
key: ${{ runner.os }}-modules-${{ hashFiles('**/package.json') }} | |
- name: Init | |
run: | | |
npm run build:functions | |
npm install -g firebase-tools | |
- name: Test | |
working-directory: packages/functions | |
run: | | |
export GOOGLE_APPLICATION_CREDENTIALS="./test-service-account-key.json" | |
npm run milestone-sync & | |
firebase emulators:exec " | |
npm run test-tangle:ci -- --forceExit --findRelatedTests ./test-tangle/metadata-nft/mint-metadata-nft_5.spec.ts && | |
npm run test-tangle:ci -- --forceExit --findRelatedTests ./test-tangle/metadata-nft/mint-metadata-nft_6.spec.ts && | |
npm run test-tangle:ci -- --forceExit --findRelatedTests ./test-tangle/metadata-nft/mint-metadata-nft_7.spec.ts | |
" --project dev --only functions,firestore,storage,ui,auth --export-on-exit=./firestore-data | |
- name: Archive firestore data | |
uses: actions/upload-artifact@v3 | |
if: ${{ failure() }} | |
with: | |
name: firestore-data-test-tangle-chunk_20 | |
path: ./packages/functions/firestore-data/ | |
retention-days: 1 | |
chunk_21: | |
needs: npm-install | |
runs-on: ubuntu-latest | |
timeout-minutes: 20 | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-node@v4 | |
with: | |
node-version: 20.x | |
- uses: actions/cache@v3 | |
with: | |
path: | | |
node_modules | |
packages/functions/node_modules | |
packages/interfaces/node_modules | |
key: ${{ runner.os }}-modules-${{ hashFiles('**/package.json') }} | |
- name: Init | |
run: | | |
npm run build:functions | |
npm install -g firebase-tools | |
- name: Test | |
working-directory: packages/functions | |
run: | | |
export GOOGLE_APPLICATION_CREDENTIALS="./test-service-account-key.json" | |
npm run milestone-sync & | |
firebase emulators:exec " | |
npm run test-tangle:ci -- --forceExit --findRelatedTests ./test-tangle/minted-nft-trading/minted-nft-trading_1_b.spec.ts && | |
npm run test-tangle:ci -- --forceExit --findRelatedTests ./test-tangle/minted-nft-trading/minted-nft-trading_1.spec.ts && | |
npm run test-tangle:ci -- --forceExit --findRelatedTests ./test-tangle/minted-nft-trading/minted-nft-trading_10.spec.ts | |
" --project dev --only functions,firestore,storage,ui,auth --export-on-exit=./firestore-data | |
- name: Archive firestore data | |
uses: actions/upload-artifact@v3 | |
if: ${{ failure() }} | |
with: | |
name: firestore-data-test-tangle-chunk_21 | |
path: ./packages/functions/firestore-data/ | |
retention-days: 1 | |
chunk_22: | |
needs: npm-install | |
runs-on: ubuntu-latest | |
timeout-minutes: 20 | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-node@v4 | |
with: | |
node-version: 20.x | |
- uses: actions/cache@v3 | |
with: | |
path: | | |
node_modules | |
packages/functions/node_modules | |
packages/interfaces/node_modules | |
key: ${{ runner.os }}-modules-${{ hashFiles('**/package.json') }} | |
- name: Init | |
run: | | |
npm run build:functions | |
npm install -g firebase-tools | |
- name: Test | |
working-directory: packages/functions | |
run: | | |
export GOOGLE_APPLICATION_CREDENTIALS="./test-service-account-key.json" | |
npm run milestone-sync & | |
firebase emulators:exec " | |
npm run test-tangle:ci -- --forceExit --findRelatedTests ./test-tangle/minted-nft-trading/minted-nft-trading_2.spec.ts && | |
npm run test-tangle:ci -- --forceExit --findRelatedTests ./test-tangle/minted-nft-trading/minted-nft-trading_3.spec.ts && | |
npm run test-tangle:ci -- --forceExit --findRelatedTests ./test-tangle/minted-nft-trading/minted-nft-trading_4.spec.ts | |
" --project dev --only functions,firestore,storage,ui,auth --export-on-exit=./firestore-data | |
- name: Archive firestore data | |
uses: actions/upload-artifact@v3 | |
if: ${{ failure() }} | |
with: | |
name: firestore-data-test-tangle-chunk_22 | |
path: ./packages/functions/firestore-data/ | |
retention-days: 1 | |
chunk_23: | |
needs: npm-install | |
runs-on: ubuntu-latest | |
timeout-minutes: 20 | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-node@v4 | |
with: | |
node-version: 20.x | |
- uses: actions/cache@v3 | |
with: | |
path: | | |
node_modules | |
packages/functions/node_modules | |
packages/interfaces/node_modules | |
key: ${{ runner.os }}-modules-${{ hashFiles('**/package.json') }} | |
- name: Init | |
run: | | |
npm run build:functions | |
npm install -g firebase-tools | |
- name: Test | |
working-directory: packages/functions | |
run: | | |
export GOOGLE_APPLICATION_CREDENTIALS="./test-service-account-key.json" | |
npm run milestone-sync & | |
firebase emulators:exec " | |
npm run test-tangle:ci -- --forceExit --findRelatedTests ./test-tangle/minted-nft-trading/minted-nft-trading_5.spec.ts && | |
npm run test-tangle:ci -- --forceExit --findRelatedTests ./test-tangle/minted-nft-trading/minted-nft-trading_6.spec.ts && | |
npm run test-tangle:ci -- --forceExit --findRelatedTests ./test-tangle/minted-nft-trading/minted-nft-trading_7.spec.ts | |
" --project dev --only functions,firestore,storage,ui,auth --export-on-exit=./firestore-data | |
- name: Archive firestore data | |
uses: actions/upload-artifact@v3 | |
if: ${{ failure() }} | |
with: | |
name: firestore-data-test-tangle-chunk_23 | |
path: ./packages/functions/firestore-data/ | |
retention-days: 1 | |
chunk_24: | |
needs: npm-install | |
runs-on: ubuntu-latest | |
timeout-minutes: 20 | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-node@v4 | |
with: | |
node-version: 20.x | |
- uses: actions/cache@v3 | |
with: | |
path: | | |
node_modules | |
packages/functions/node_modules | |
packages/interfaces/node_modules | |
key: ${{ runner.os }}-modules-${{ hashFiles('**/package.json') }} | |
- name: Init | |
run: | | |
npm run build:functions | |
npm install -g firebase-tools | |
- name: Test | |
working-directory: packages/functions | |
run: | | |
export GOOGLE_APPLICATION_CREDENTIALS="./test-service-account-key.json" | |
npm run milestone-sync & | |
firebase emulators:exec " | |
npm run test-tangle:ci -- --forceExit --findRelatedTests ./test-tangle/minted-nft-trading/minted-nft-trading_8.spec.ts && | |
npm run test-tangle:ci -- --forceExit --findRelatedTests ./test-tangle/minted-token-airdrop/minted-token-airdrop_1_a.spec.ts && | |
npm run test-tangle:ci -- --forceExit --findRelatedTests ./test-tangle/minted-token-airdrop/minted-token-airdrop_1_b.spec.ts | |
" --project dev --only functions,firestore,storage,ui,auth --export-on-exit=./firestore-data | |
- name: Archive firestore data | |
uses: actions/upload-artifact@v3 | |
if: ${{ failure() }} | |
with: | |
name: firestore-data-test-tangle-chunk_24 | |
path: ./packages/functions/firestore-data/ | |
retention-days: 1 | |
chunk_25: | |
needs: npm-install | |
runs-on: ubuntu-latest | |
timeout-minutes: 20 | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-node@v4 | |
with: | |
node-version: 20.x | |
- uses: actions/cache@v3 | |
with: | |
path: | | |
node_modules | |
packages/functions/node_modules | |
packages/interfaces/node_modules | |
key: ${{ runner.os }}-modules-${{ hashFiles('**/package.json') }} | |
- name: Init | |
run: | | |
npm run build:functions | |
npm install -g firebase-tools | |
- name: Test | |
working-directory: packages/functions | |
run: | | |
export GOOGLE_APPLICATION_CREDENTIALS="./test-service-account-key.json" | |
npm run milestone-sync & | |
firebase emulators:exec " | |
npm run test-tangle:ci -- --forceExit --findRelatedTests ./test-tangle/minted-token-airdrop/minted-token-airdrop_1_c.spec.ts && | |
npm run test-tangle:ci -- --forceExit --findRelatedTests ./test-tangle/minted-token-airdrop/minted-token-airdrop_2.spec.ts && | |
npm run test-tangle:ci -- --forceExit --findRelatedTests ./test-tangle/minted-token-airdrop/minted-token-airdrop_4.spec.ts | |
" --project dev --only functions,firestore,storage,ui,auth --export-on-exit=./firestore-data | |
- name: Archive firestore data | |
uses: actions/upload-artifact@v3 | |
if: ${{ failure() }} | |
with: | |
name: firestore-data-test-tangle-chunk_25 | |
path: ./packages/functions/firestore-data/ | |
retention-days: 1 | |
chunk_26: | |
needs: npm-install | |
runs-on: ubuntu-latest | |
timeout-minutes: 20 | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-node@v4 | |
with: | |
node-version: 20.x | |
- uses: actions/cache@v3 | |
with: | |
path: | | |
node_modules | |
packages/functions/node_modules | |
packages/interfaces/node_modules | |
key: ${{ runner.os }}-modules-${{ hashFiles('**/package.json') }} | |
- name: Init | |
run: | | |
npm run build:functions | |
npm install -g firebase-tools | |
- name: Test | |
working-directory: packages/functions | |
run: | | |
export GOOGLE_APPLICATION_CREDENTIALS="./test-service-account-key.json" | |
npm run milestone-sync & | |
firebase emulators:exec " | |
npm run test-tangle:ci -- --forceExit --findRelatedTests ./test-tangle/minted-token-airdrop/minted-token-airdrop_5.spec.ts && | |
npm run test-tangle:ci -- --forceExit --findRelatedTests ./test-tangle/minted-token-claim/token.claim.minted_1.spec.ts && | |
npm run test-tangle:ci -- --forceExit --findRelatedTests ./test-tangle/minted-token-claim/token.claim.minted_2.spec.ts | |
" --project dev --only functions,firestore,storage,ui,auth --export-on-exit=./firestore-data | |
- name: Archive firestore data | |
uses: actions/upload-artifact@v3 | |
if: ${{ failure() }} | |
with: | |
name: firestore-data-test-tangle-chunk_26 | |
path: ./packages/functions/firestore-data/ | |
retention-days: 1 | |
chunk_27: | |
needs: npm-install | |
runs-on: ubuntu-latest | |
timeout-minutes: 20 | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-node@v4 | |
with: | |
node-version: 20.x | |
- uses: actions/cache@v3 | |
with: | |
path: | | |
node_modules | |
packages/functions/node_modules | |
packages/interfaces/node_modules | |
key: ${{ runner.os }}-modules-${{ hashFiles('**/package.json') }} | |
- name: Init | |
run: | | |
npm run build:functions | |
npm install -g firebase-tools | |
- name: Test | |
working-directory: packages/functions | |
run: | | |
export GOOGLE_APPLICATION_CREDENTIALS="./test-service-account-key.json" | |
npm run milestone-sync & | |
firebase emulators:exec " | |
npm run test-tangle:ci -- --forceExit --findRelatedTests ./test-tangle/minted-token-claim/token.claim.minted_3.spec.ts && | |
npm run test-tangle:ci -- --forceExit --findRelatedTests ./test-tangle/minted-token-claim/token.claim.minted_4.spec.ts && | |
npm run test-tangle:ci -- --forceExit --findRelatedTests ./test-tangle/minted-token-claim/token.claim.minted_5.spec.ts | |
" --project dev --only functions,firestore,storage,ui,auth --export-on-exit=./firestore-data | |
- name: Archive firestore data | |
uses: actions/upload-artifact@v3 | |
if: ${{ failure() }} | |
with: | |
name: firestore-data-test-tangle-chunk_27 | |
path: ./packages/functions/firestore-data/ | |
retention-days: 1 | |
chunk_28: | |
needs: npm-install | |
runs-on: ubuntu-latest | |
timeout-minutes: 20 | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-node@v4 | |
with: | |
node-version: 20.x | |
- uses: actions/cache@v3 | |
with: | |
path: | | |
node_modules | |
packages/functions/node_modules | |
packages/interfaces/node_modules | |
key: ${{ runner.os }}-modules-${{ hashFiles('**/package.json') }} | |
- name: Init | |
run: | | |
npm run build:functions | |
npm install -g firebase-tools | |
- name: Test | |
working-directory: packages/functions | |
run: | | |
export GOOGLE_APPLICATION_CREDENTIALS="./test-service-account-key.json" | |
npm run milestone-sync & | |
firebase emulators:exec " | |
npm run test-tangle:ci -- --forceExit --findRelatedTests ./test-tangle/minted-token-claim/token.claim.minted_6.spec.ts && | |
npm run test-tangle:ci -- --forceExit --findRelatedTests ./test-tangle/minted-token-claim/token.claim.minted_7.spec.ts && | |
npm run test-tangle:ci -- --forceExit --findRelatedTests ./test-tangle/minted-token-trade/minted-token-trade_1.spec.ts | |
" --project dev --only functions,firestore,storage,ui,auth --export-on-exit=./firestore-data | |
- name: Archive firestore data | |
uses: actions/upload-artifact@v3 | |
if: ${{ failure() }} | |
with: | |
name: firestore-data-test-tangle-chunk_28 | |
path: ./packages/functions/firestore-data/ | |
retention-days: 1 | |
chunk_29: | |
needs: npm-install | |
runs-on: ubuntu-latest | |
timeout-minutes: 20 | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-node@v4 | |
with: | |
node-version: 20.x | |
- uses: actions/cache@v3 | |
with: | |
path: | | |
node_modules | |
packages/functions/node_modules | |
packages/interfaces/node_modules | |
key: ${{ runner.os }}-modules-${{ hashFiles('**/package.json') }} | |
- name: Init | |
run: | | |
npm run build:functions | |
npm install -g firebase-tools | |
- name: Test | |
working-directory: packages/functions | |
run: | | |
export GOOGLE_APPLICATION_CREDENTIALS="./test-service-account-key.json" | |
npm run milestone-sync & | |
firebase emulators:exec " | |
npm run test-tangle:ci -- --forceExit --findRelatedTests ./test-tangle/minted-token-trade/minted-token-trade_10.spec.ts && | |
npm run test-tangle:ci -- --forceExit --findRelatedTests ./test-tangle/minted-token-trade/minted-token-trade_11.spec.ts && | |
npm run test-tangle:ci -- --forceExit --findRelatedTests ./test-tangle/minted-token-trade/minted-token-trade_12_b.spec.ts | |
" --project dev --only functions,firestore,storage,ui,auth --export-on-exit=./firestore-data | |
- name: Archive firestore data | |
uses: actions/upload-artifact@v3 | |
if: ${{ failure() }} | |
with: | |
name: firestore-data-test-tangle-chunk_29 | |
path: ./packages/functions/firestore-data/ | |
retention-days: 1 | |
chunk_30: | |
needs: npm-install | |
runs-on: ubuntu-latest | |
timeout-minutes: 20 | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-node@v4 | |
with: | |
node-version: 20.x | |
- uses: actions/cache@v3 | |
with: | |
path: | | |
node_modules | |
packages/functions/node_modules | |
packages/interfaces/node_modules | |
key: ${{ runner.os }}-modules-${{ hashFiles('**/package.json') }} | |
- name: Init | |
run: | | |
npm run build:functions | |
npm install -g firebase-tools | |
- name: Test | |
working-directory: packages/functions | |
run: | | |
export GOOGLE_APPLICATION_CREDENTIALS="./test-service-account-key.json" | |
npm run milestone-sync & | |
firebase emulators:exec " | |
npm run test-tangle:ci -- --forceExit --findRelatedTests ./test-tangle/minted-token-trade/minted-token-trade_12.spec.ts && | |
npm run test-tangle:ci -- --forceExit --findRelatedTests ./test-tangle/minted-token-trade/minted-token-trade_13.spec.ts && | |
npm run test-tangle:ci -- --forceExit --findRelatedTests ./test-tangle/minted-token-trade/minted-token-trade_14_b.spec.ts | |
" --project dev --only functions,firestore,storage,ui,auth --export-on-exit=./firestore-data | |
- name: Archive firestore data | |
uses: actions/upload-artifact@v3 | |
if: ${{ failure() }} | |
with: | |
name: firestore-data-test-tangle-chunk_30 | |
path: ./packages/functions/firestore-data/ | |
retention-days: 1 | |
chunk_31: | |
needs: npm-install | |
runs-on: ubuntu-latest | |
timeout-minutes: 20 | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-node@v4 | |
with: | |
node-version: 20.x | |
- uses: actions/cache@v3 | |
with: | |
path: | | |
node_modules | |
packages/functions/node_modules | |
packages/interfaces/node_modules | |
key: ${{ runner.os }}-modules-${{ hashFiles('**/package.json') }} | |
- name: Init | |
run: | | |
npm run build:functions | |
npm install -g firebase-tools | |
- name: Test | |
working-directory: packages/functions | |
run: | | |
export GOOGLE_APPLICATION_CREDENTIALS="./test-service-account-key.json" | |
npm run milestone-sync & | |
firebase emulators:exec " | |
npm run test-tangle:ci -- --forceExit --findRelatedTests ./test-tangle/minted-token-trade/minted-token-trade_14.spec.ts && | |
npm run test-tangle:ci -- --forceExit --findRelatedTests ./test-tangle/minted-token-trade/minted-token-trade_16.spec.ts && | |
npm run test-tangle:ci -- --forceExit --findRelatedTests ./test-tangle/minted-token-trade/minted-token-trade_17.spec.ts | |
" --project dev --only functions,firestore,storage,ui,auth --export-on-exit=./firestore-data | |
- name: Archive firestore data | |
uses: actions/upload-artifact@v3 | |
if: ${{ failure() }} | |
with: | |
name: firestore-data-test-tangle-chunk_31 | |
path: ./packages/functions/firestore-data/ | |
retention-days: 1 | |
chunk_32: | |
needs: npm-install | |
runs-on: ubuntu-latest | |
timeout-minutes: 20 | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-node@v4 | |
with: | |
node-version: 20.x | |
- uses: actions/cache@v3 | |
with: | |
path: | | |
node_modules | |
packages/functions/node_modules | |
packages/interfaces/node_modules | |
key: ${{ runner.os }}-modules-${{ hashFiles('**/package.json') }} | |
- name: Init | |
run: | | |
npm run build:functions | |
npm install -g firebase-tools | |
- name: Test | |
working-directory: packages/functions | |
run: | | |
export GOOGLE_APPLICATION_CREDENTIALS="./test-service-account-key.json" | |
npm run milestone-sync & | |
firebase emulators:exec " | |
npm run test-tangle:ci -- --forceExit --findRelatedTests ./test-tangle/minted-token-trade/minted-token-trade_18.spec.ts && | |
npm run test-tangle:ci -- --forceExit --findRelatedTests ./test-tangle/minted-token-trade/minted-token-trade_19.spec.ts && | |
npm run test-tangle:ci -- --forceExit --findRelatedTests ./test-tangle/minted-token-trade/minted-token-trade_2_b.spec.ts | |
" --project dev --only functions,firestore,storage,ui,auth --export-on-exit=./firestore-data | |
- name: Archive firestore data | |
uses: actions/upload-artifact@v3 | |
if: ${{ failure() }} | |
with: | |
name: firestore-data-test-tangle-chunk_32 | |
path: ./packages/functions/firestore-data/ | |
retention-days: 1 | |
chunk_33: | |
needs: npm-install | |
runs-on: ubuntu-latest | |
timeout-minutes: 20 | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-node@v4 | |
with: | |
node-version: 20.x | |
- uses: actions/cache@v3 | |
with: | |
path: | | |
node_modules | |
packages/functions/node_modules | |
packages/interfaces/node_modules | |
key: ${{ runner.os }}-modules-${{ hashFiles('**/package.json') }} | |
- name: Init | |
run: | | |
npm run build:functions | |
npm install -g firebase-tools | |
- name: Test | |
working-directory: packages/functions | |
run: | | |
export GOOGLE_APPLICATION_CREDENTIALS="./test-service-account-key.json" | |
npm run milestone-sync & | |
firebase emulators:exec " | |
npm run test-tangle:ci -- --forceExit --findRelatedTests ./test-tangle/minted-token-trade/minted-token-trade_2.spec.ts && | |
npm run test-tangle:ci -- --forceExit --findRelatedTests ./test-tangle/minted-token-trade/minted-token-trade_20.spec.ts && | |
npm run test-tangle:ci -- --forceExit --findRelatedTests ./test-tangle/minted-token-trade/minted-token-trade_21.spec.ts | |
" --project dev --only functions,firestore,storage,ui,auth --export-on-exit=./firestore-data | |
- name: Archive firestore data | |
uses: actions/upload-artifact@v3 | |
if: ${{ failure() }} | |
with: | |
name: firestore-data-test-tangle-chunk_33 | |
path: ./packages/functions/firestore-data/ | |
retention-days: 1 | |
chunk_34: | |
needs: npm-install | |
runs-on: ubuntu-latest | |
timeout-minutes: 20 | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-node@v4 | |
with: | |
node-version: 20.x | |
- uses: actions/cache@v3 | |
with: | |
path: | | |
node_modules | |
packages/functions/node_modules | |
packages/interfaces/node_modules | |
key: ${{ runner.os }}-modules-${{ hashFiles('**/package.json') }} | |
- name: Init | |
run: | | |
npm run build:functions | |
npm install -g firebase-tools | |
- name: Test | |
working-directory: packages/functions | |
run: | | |
export GOOGLE_APPLICATION_CREDENTIALS="./test-service-account-key.json" | |
npm run milestone-sync & | |
firebase emulators:exec " | |
npm run test-tangle:ci -- --forceExit --findRelatedTests ./test-tangle/minted-token-trade/minted-token-trade_22.spec.ts && | |
npm run test-tangle:ci -- --forceExit --findRelatedTests ./test-tangle/minted-token-trade/minted-token-trade_23.spec.ts && | |
npm run test-tangle:ci -- --forceExit --findRelatedTests ./test-tangle/minted-token-trade/minted-token-trade_24.spec.ts | |
" --project dev --only functions,firestore,storage,ui,auth --export-on-exit=./firestore-data | |
- name: Archive firestore data | |
uses: actions/upload-artifact@v3 | |
if: ${{ failure() }} | |
with: | |
name: firestore-data-test-tangle-chunk_34 | |
path: ./packages/functions/firestore-data/ | |
retention-days: 1 | |
chunk_35: | |
needs: npm-install | |
runs-on: ubuntu-latest | |
timeout-minutes: 20 | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-node@v4 | |
with: | |
node-version: 20.x | |
- uses: actions/cache@v3 | |
with: | |
path: | | |
node_modules | |
packages/functions/node_modules | |
packages/interfaces/node_modules | |
key: ${{ runner.os }}-modules-${{ hashFiles('**/package.json') }} | |
- name: Init | |
run: | | |
npm run build:functions | |
npm install -g firebase-tools | |
- name: Test | |
working-directory: packages/functions | |
run: | | |
export GOOGLE_APPLICATION_CREDENTIALS="./test-service-account-key.json" | |
npm run milestone-sync & | |
firebase emulators:exec " | |
npm run test-tangle:ci -- --forceExit --findRelatedTests ./test-tangle/minted-token-trade/minted-token-trade_3.spec.ts && | |
npm run test-tangle:ci -- --forceExit --findRelatedTests ./test-tangle/minted-token-trade/minted-token-trade_4.spec.ts && | |
npm run test-tangle:ci -- --forceExit --findRelatedTests ./test-tangle/minted-token-trade/minted-token-trade_5.spec.ts | |
" --project dev --only functions,firestore,storage,ui,auth --export-on-exit=./firestore-data | |
- name: Archive firestore data | |
uses: actions/upload-artifact@v3 | |
if: ${{ failure() }} | |
with: | |
name: firestore-data-test-tangle-chunk_35 | |
path: ./packages/functions/firestore-data/ | |
retention-days: 1 | |
chunk_36: | |
needs: npm-install | |
runs-on: ubuntu-latest | |
timeout-minutes: 20 | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-node@v4 | |
with: | |
node-version: 20.x | |
- uses: actions/cache@v3 | |
with: | |
path: | | |
node_modules | |
packages/functions/node_modules | |
packages/interfaces/node_modules | |
key: ${{ runner.os }}-modules-${{ hashFiles('**/package.json') }} | |
- name: Init | |
run: | | |
npm run build:functions | |
npm install -g firebase-tools | |
- name: Test | |
working-directory: packages/functions | |
run: | | |
export GOOGLE_APPLICATION_CREDENTIALS="./test-service-account-key.json" | |
npm run milestone-sync & | |
firebase emulators:exec " | |
npm run test-tangle:ci -- --forceExit --findRelatedTests ./test-tangle/minted-token-trade/minted-token-trade_6.spec.ts && | |
npm run test-tangle:ci -- --forceExit --findRelatedTests ./test-tangle/minted-token-trade/minted-token-trade_7.spec.ts && | |
npm run test-tangle:ci -- --forceExit --findRelatedTests ./test-tangle/minted-token-trade/minted-token-trade_8.spec.ts | |
" --project dev --only functions,firestore,storage,ui,auth --export-on-exit=./firestore-data | |
- name: Archive firestore data | |
uses: actions/upload-artifact@v3 | |
if: ${{ failure() }} | |
with: | |
name: firestore-data-test-tangle-chunk_36 | |
path: ./packages/functions/firestore-data/ | |
retention-days: 1 | |
chunk_37: | |
needs: npm-install | |
runs-on: ubuntu-latest | |
timeout-minutes: 20 | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-node@v4 | |
with: | |
node-version: 20.x | |
- uses: actions/cache@v3 | |
with: | |
path: | | |
node_modules | |
packages/functions/node_modules | |
packages/interfaces/node_modules | |
key: ${{ runner.os }}-modules-${{ hashFiles('**/package.json') }} | |
- name: Init | |
run: | | |
npm run build:functions | |
npm install -g firebase-tools | |
- name: Test | |
working-directory: packages/functions | |
run: | | |
export GOOGLE_APPLICATION_CREDENTIALS="./test-service-account-key.json" | |
npm run milestone-sync & | |
firebase emulators:exec " | |
npm run test-tangle:ci -- --forceExit --findRelatedTests ./test-tangle/minted-token-trade/minted-token-trade_9.spec.ts && | |
npm run test-tangle:ci -- --forceExit --findRelatedTests ./test-tangle/nft-bid/nft-bid.otr_1.spec.ts && | |
npm run test-tangle:ci -- --forceExit --findRelatedTests ./test-tangle/nft-bid/nft-bid.otr_2.spec.ts | |
" --project dev --only functions,firestore,storage,ui,auth --export-on-exit=./firestore-data | |
- name: Archive firestore data | |
uses: actions/upload-artifact@v3 | |
if: ${{ failure() }} | |
with: | |
name: firestore-data-test-tangle-chunk_37 | |
path: ./packages/functions/firestore-data/ | |
retention-days: 1 | |
chunk_38: | |
needs: npm-install | |
runs-on: ubuntu-latest | |
timeout-minutes: 20 | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-node@v4 | |
with: | |
node-version: 20.x | |
- uses: actions/cache@v3 | |
with: | |
path: | | |
node_modules | |
packages/functions/node_modules | |
packages/interfaces/node_modules | |
key: ${{ runner.os }}-modules-${{ hashFiles('**/package.json') }} | |
- name: Init | |
run: | | |
npm run build:functions | |
npm install -g firebase-tools | |
- name: Test | |
working-directory: packages/functions | |
run: | | |
export GOOGLE_APPLICATION_CREDENTIALS="./test-service-account-key.json" | |
npm run milestone-sync & | |
firebase emulators:exec " | |
npm run test-tangle:ci -- --forceExit --findRelatedTests ./test-tangle/nft-bid/nft-bid.otr_3.spec.ts && | |
npm run test-tangle:ci -- --forceExit --findRelatedTests ./test-tangle/nft-bid/nft-bid.otr_4.spec.ts && | |
npm run test-tangle:ci -- --forceExit --findRelatedTests ./test-tangle/nft-set-for-sale/nft-set-for-sale_1.spec.ts | |
" --project dev --only functions,firestore,storage,ui,auth --export-on-exit=./firestore-data | |
- name: Archive firestore data | |
uses: actions/upload-artifact@v3 | |
if: ${{ failure() }} | |
with: | |
name: firestore-data-test-tangle-chunk_38 | |
path: ./packages/functions/firestore-data/ | |
retention-days: 1 | |
chunk_39: | |
needs: npm-install | |
runs-on: ubuntu-latest | |
timeout-minutes: 20 | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-node@v4 | |
with: | |
node-version: 20.x | |
- uses: actions/cache@v3 | |
with: | |
path: | | |
node_modules | |
packages/functions/node_modules | |
packages/interfaces/node_modules | |
key: ${{ runner.os }}-modules-${{ hashFiles('**/package.json') }} | |
- name: Init | |
run: | | |
npm run build:functions | |
npm install -g firebase-tools | |
- name: Test | |
working-directory: packages/functions | |
run: | | |
export GOOGLE_APPLICATION_CREDENTIALS="./test-service-account-key.json" | |
npm run milestone-sync & | |
firebase emulators:exec " | |
npm run test-tangle:ci -- --forceExit --findRelatedTests ./test-tangle/nft-set-for-sale/nft-set-for-sale_2.spec.ts && | |
npm run test-tangle:ci -- --forceExit --findRelatedTests ./test-tangle/nft-set-for-sale/nft-set-for-sale_3.spec.ts && | |
npm run test-tangle:ci -- --forceExit --findRelatedTests ./test-tangle/nft-staking/nft-staking_1.spec.ts | |
" --project dev --only functions,firestore,storage,ui,auth --export-on-exit=./firestore-data | |
- name: Archive firestore data | |
uses: actions/upload-artifact@v3 | |
if: ${{ failure() }} | |
with: | |
name: firestore-data-test-tangle-chunk_39 | |
path: ./packages/functions/firestore-data/ | |
retention-days: 1 | |
chunk_40: | |
needs: npm-install | |
runs-on: ubuntu-latest | |
timeout-minutes: 20 | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-node@v4 | |
with: | |
node-version: 20.x | |
- uses: actions/cache@v3 | |
with: | |
path: | | |
node_modules | |
packages/functions/node_modules | |
packages/interfaces/node_modules | |
key: ${{ runner.os }}-modules-${{ hashFiles('**/package.json') }} | |
- name: Init | |
run: | | |
npm run build:functions | |
npm install -g firebase-tools | |
- name: Test | |
working-directory: packages/functions | |
run: | | |
export GOOGLE_APPLICATION_CREDENTIALS="./test-service-account-key.json" | |
npm run milestone-sync & | |
firebase emulators:exec " | |
npm run test-tangle:ci -- --forceExit --findRelatedTests ./test-tangle/nft-staking/nft-staking_2_b.spec.ts && | |
npm run test-tangle:ci -- --forceExit --findRelatedTests ./test-tangle/nft-staking/nft-staking_2.spec.ts && | |
npm run test-tangle:ci -- --forceExit --findRelatedTests ./test-tangle/nft-staking/nft-staking_3.spec.ts | |
" --project dev --only functions,firestore,storage,ui,auth --export-on-exit=./firestore-data | |
- name: Archive firestore data | |
uses: actions/upload-artifact@v3 | |
if: ${{ failure() }} | |
with: | |
name: firestore-data-test-tangle-chunk_40 | |
path: ./packages/functions/firestore-data/ | |
retention-days: 1 | |
chunk_41: | |
needs: npm-install | |
runs-on: ubuntu-latest | |
timeout-minutes: 20 | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-node@v4 | |
with: | |
node-version: 20.x | |
- uses: actions/cache@v3 | |
with: | |
path: | | |
node_modules | |
packages/functions/node_modules | |
packages/interfaces/node_modules | |
key: ${{ runner.os }}-modules-${{ hashFiles('**/package.json') }} | |
- name: Init | |
run: | | |
npm run build:functions | |
npm install -g firebase-tools | |
- name: Test | |
working-directory: packages/functions | |
run: | | |
export GOOGLE_APPLICATION_CREDENTIALS="./test-service-account-key.json" | |
npm run milestone-sync & | |
firebase emulators:exec " | |
npm run test-tangle:ci -- --forceExit --findRelatedTests ./test-tangle/nft-staking/nft-staking_4.spec.ts && | |
npm run test-tangle:ci -- --forceExit --findRelatedTests ./test-tangle/nft-staking/nft-staking_5.spec.ts && | |
npm run test-tangle:ci -- --forceExit --findRelatedTests ./test-tangle/nft-staking/nft-staking_6.spec.ts | |
" --project dev --only functions,firestore,storage,ui,auth --export-on-exit=./firestore-data | |
- name: Archive firestore data | |
uses: actions/upload-artifact@v3 | |
if: ${{ failure() }} | |
with: | |
name: firestore-data-test-tangle-chunk_41 | |
path: ./packages/functions/firestore-data/ | |
retention-days: 1 | |
chunk_42: | |
needs: npm-install | |
runs-on: ubuntu-latest | |
timeout-minutes: 20 | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-node@v4 | |
with: | |
node-version: 20.x | |
- uses: actions/cache@v3 | |
with: | |
path: | | |
node_modules | |
packages/functions/node_modules | |
packages/interfaces/node_modules | |
key: ${{ runner.os }}-modules-${{ hashFiles('**/package.json') }} | |
- name: Init | |
run: | | |
npm run build:functions | |
npm install -g firebase-tools | |
- name: Test | |
working-directory: packages/functions | |
run: | | |
export GOOGLE_APPLICATION_CREDENTIALS="./test-service-account-key.json" | |
npm run milestone-sync & | |
firebase emulators:exec " | |
npm run test-tangle:ci -- --forceExit --findRelatedTests ./test-tangle/nft-staking/nft-staking_7.spec.ts && | |
npm run test-tangle:ci -- --forceExit --findRelatedTests ./test-tangle/nft-staking/nft-staking_8.spec.ts && | |
npm run test-tangle:ci -- --forceExit --findRelatedTests ./test-tangle/nft-staking/nft-staking_9.spec.ts | |
" --project dev --only functions,firestore,storage,ui,auth --export-on-exit=./firestore-data | |
- name: Archive firestore data | |
uses: actions/upload-artifact@v3 | |
if: ${{ failure() }} | |
with: | |
name: firestore-data-test-tangle-chunk_42 | |
path: ./packages/functions/firestore-data/ | |
retention-days: 1 | |
chunk_43: | |
needs: npm-install | |
runs-on: ubuntu-latest | |
timeout-minutes: 20 | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-node@v4 | |
with: | |
node-version: 20.x | |
- uses: actions/cache@v3 | |
with: | |
path: | | |
node_modules | |
packages/functions/node_modules | |
packages/interfaces/node_modules | |
key: ${{ runner.os }}-modules-${{ hashFiles('**/package.json') }} | |
- name: Init | |
run: | | |
npm run build:functions | |
npm install -g firebase-tools | |
- name: Test | |
working-directory: packages/functions | |
run: | | |
export GOOGLE_APPLICATION_CREDENTIALS="./test-service-account-key.json" | |
npm run milestone-sync & | |
firebase emulators:exec " | |
npm run test-tangle:ci -- --forceExit --findRelatedTests ./test-tangle/proposal-tangle/proposal.approval.spec.ts && | |
npm run test-tangle:ci -- --forceExit --findRelatedTests ./test-tangle/proposal-tangle/proposal.create.spec.ts && | |
npm run test-tangle:ci -- --forceExit --findRelatedTests ./test-tangle/proposal-tangle/proposal.simple.vote.spec.ts | |
" --project dev --only functions,firestore,storage,ui,auth --export-on-exit=./firestore-data | |
- name: Archive firestore data | |
uses: actions/upload-artifact@v3 | |
if: ${{ failure() }} | |
with: | |
name: firestore-data-test-tangle-chunk_43 | |
path: ./packages/functions/firestore-data/ | |
retention-days: 1 | |
chunk_44: | |
needs: npm-install | |
runs-on: ubuntu-latest | |
timeout-minutes: 20 | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-node@v4 | |
with: | |
node-version: 20.x | |
- uses: actions/cache@v3 | |
with: | |
path: | | |
node_modules | |
packages/functions/node_modules | |
packages/interfaces/node_modules | |
key: ${{ runner.os }}-modules-${{ hashFiles('**/package.json') }} | |
- name: Init | |
run: | | |
npm run build:functions | |
npm install -g firebase-tools | |
- name: Test | |
working-directory: packages/functions | |
run: | | |
export GOOGLE_APPLICATION_CREDENTIALS="./test-service-account-key.json" | |
npm run milestone-sync & | |
firebase emulators:exec " | |
npm run test-tangle:ci -- --forceExit --findRelatedTests ./test-tangle/proposal-tangle/proposal.stake.voting.spec.ts && | |
npm run test-tangle:ci -- --forceExit --findRelatedTests ./test-tangle/proposal-tangle/proposal.token.voting.spec.ts && | |
npm run test-tangle:ci -- --forceExit --findRelatedTests ./test-tangle/space-tangle/space.accept.member.spec.ts | |
" --project dev --only functions,firestore,storage,ui,auth --export-on-exit=./firestore-data | |
- name: Archive firestore data | |
uses: actions/upload-artifact@v3 | |
if: ${{ failure() }} | |
with: | |
name: firestore-data-test-tangle-chunk_44 | |
path: ./packages/functions/firestore-data/ | |
retention-days: 1 | |
chunk_45: | |
needs: npm-install | |
runs-on: ubuntu-latest | |
timeout-minutes: 20 | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-node@v4 | |
with: | |
node-version: 20.x | |
- uses: actions/cache@v3 | |
with: | |
path: | | |
node_modules | |
packages/functions/node_modules | |
packages/interfaces/node_modules | |
key: ${{ runner.os }}-modules-${{ hashFiles('**/package.json') }} | |
- name: Init | |
run: | | |
npm run build:functions | |
npm install -g firebase-tools | |
- name: Test | |
working-directory: packages/functions | |
run: | | |
export GOOGLE_APPLICATION_CREDENTIALS="./test-service-account-key.json" | |
npm run milestone-sync & | |
firebase emulators:exec " | |
npm run test-tangle:ci -- --forceExit --findRelatedTests ./test-tangle/space-tangle/space.block.member.spec.ts && | |
npm run test-tangle:ci -- --forceExit --findRelatedTests ./test-tangle/space-tangle/space.create.spec.ts && | |
npm run test-tangle:ci -- --forceExit --findRelatedTests ./test-tangle/space-tangle/space.decline.member.spec.ts | |
" --project dev --only functions,firestore,storage,ui,auth --export-on-exit=./firestore-data | |
- name: Archive firestore data | |
uses: actions/upload-artifact@v3 | |
if: ${{ failure() }} | |
with: | |
name: firestore-data-test-tangle-chunk_45 | |
path: ./packages/functions/firestore-data/ | |
retention-days: 1 | |
chunk_46: | |
needs: npm-install | |
runs-on: ubuntu-latest | |
timeout-minutes: 20 | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-node@v4 | |
with: | |
node-version: 20.x | |
- uses: actions/cache@v3 | |
with: | |
path: | | |
node_modules | |
packages/functions/node_modules | |
packages/interfaces/node_modules | |
key: ${{ runner.os }}-modules-${{ hashFiles('**/package.json') }} | |
- name: Init | |
run: | | |
npm run build:functions | |
npm install -g firebase-tools | |
- name: Test | |
working-directory: packages/functions | |
run: | | |
export GOOGLE_APPLICATION_CREDENTIALS="./test-service-account-key.json" | |
npm run milestone-sync & | |
firebase emulators:exec " | |
npm run test-tangle:ci -- --forceExit --findRelatedTests ./test-tangle/space-tangle/space.edit.guardian.spec.ts && | |
npm run test-tangle:ci -- --forceExit --findRelatedTests ./test-tangle/space-tangle/space.join.spec.ts && | |
npm run test-tangle:ci -- --forceExit --findRelatedTests ./test-tangle/space-tangle/space.leave.spec.ts | |
" --project dev --only functions,firestore,storage,ui,auth --export-on-exit=./firestore-data | |
- name: Archive firestore data | |
uses: actions/upload-artifact@v3 | |
if: ${{ failure() }} | |
with: | |
name: firestore-data-test-tangle-chunk_46 | |
path: ./packages/functions/firestore-data/ | |
retention-days: 1 | |
chunk_47: | |
needs: npm-install | |
runs-on: ubuntu-latest | |
timeout-minutes: 20 | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-node@v4 | |
with: | |
node-version: 20.x | |
- uses: actions/cache@v3 | |
with: | |
path: | | |
node_modules | |
packages/functions/node_modules | |
packages/interfaces/node_modules | |
key: ${{ runner.os }}-modules-${{ hashFiles('**/package.json') }} | |
- name: Init | |
run: | | |
npm run build:functions | |
npm install -g firebase-tools | |
- name: Test | |
working-directory: packages/functions | |
run: | | |
export GOOGLE_APPLICATION_CREDENTIALS="./test-service-account-key.json" | |
npm run milestone-sync & | |
firebase emulators:exec " | |
npm run test-tangle:ci -- --forceExit --findRelatedTests ./test-tangle/staking/staking_1.spec.ts && | |
npm run test-tangle:ci -- --forceExit --findRelatedTests ./test-tangle/staking/staking_2.spec.ts && | |
npm run test-tangle:ci -- --forceExit --findRelatedTests ./test-tangle/staking/staking_3.spec.ts | |
" --project dev --only functions,firestore,storage,ui,auth --export-on-exit=./firestore-data | |
- name: Archive firestore data | |
uses: actions/upload-artifact@v3 | |
if: ${{ failure() }} | |
with: | |
name: firestore-data-test-tangle-chunk_47 | |
path: ./packages/functions/firestore-data/ | |
retention-days: 1 | |
chunk_48: | |
needs: npm-install | |
runs-on: ubuntu-latest | |
timeout-minutes: 20 | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-node@v4 | |
with: | |
node-version: 20.x | |
- uses: actions/cache@v3 | |
with: | |
path: | | |
node_modules | |
packages/functions/node_modules | |
packages/interfaces/node_modules | |
key: ${{ runner.os }}-modules-${{ hashFiles('**/package.json') }} | |
- name: Init | |
run: | | |
npm run build:functions | |
npm install -g firebase-tools | |
- name: Test | |
working-directory: packages/functions | |
run: | | |
export GOOGLE_APPLICATION_CREDENTIALS="./test-service-account-key.json" | |
npm run milestone-sync & | |
firebase emulators:exec " | |
npm run test-tangle:ci -- --forceExit --findRelatedTests ./test-tangle/staking/staking_4.spec.ts && | |
npm run test-tangle:ci -- --forceExit --findRelatedTests ./test-tangle/staking/staking_5.spec.ts && | |
npm run test-tangle:ci -- --forceExit --findRelatedTests ./test-tangle/stamp-tangle/stamp-tangle_1.spec.ts | |
" --project dev --only functions,firestore,storage,ui,auth --export-on-exit=./firestore-data | |
- name: Archive firestore data | |
uses: actions/upload-artifact@v3 | |
if: ${{ failure() }} | |
with: | |
name: firestore-data-test-tangle-chunk_48 | |
path: ./packages/functions/firestore-data/ | |
retention-days: 1 | |
chunk_49: | |
needs: npm-install | |
runs-on: ubuntu-latest | |
timeout-minutes: 20 | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-node@v4 | |
with: | |
node-version: 20.x | |
- uses: actions/cache@v3 | |
with: | |
path: | | |
node_modules | |
packages/functions/node_modules | |
packages/interfaces/node_modules | |
key: ${{ runner.os }}-modules-${{ hashFiles('**/package.json') }} | |
- name: Init | |
run: | | |
npm run build:functions | |
npm install -g firebase-tools | |
- name: Test | |
working-directory: packages/functions | |
run: | | |
export GOOGLE_APPLICATION_CREDENTIALS="./test-service-account-key.json" | |
npm run milestone-sync & | |
firebase emulators:exec " | |
npm run test-tangle:ci -- --forceExit --findRelatedTests ./test-tangle/stamp-tangle/stamp-tangle_2.spec.ts && | |
npm run test-tangle:ci -- --forceExit --findRelatedTests ./test-tangle/stamp-tangle/stamp-tangle_3.spec.ts && | |
npm run test-tangle:ci -- --forceExit --findRelatedTests ./test-tangle/stamp-tangle/stamp-tangle_4.spec.ts | |
" --project dev --only functions,firestore,storage,ui,auth --export-on-exit=./firestore-data | |
- name: Archive firestore data | |
uses: actions/upload-artifact@v3 | |
if: ${{ failure() }} | |
with: | |
name: firestore-data-test-tangle-chunk_49 | |
path: ./packages/functions/firestore-data/ | |
retention-days: 1 | |
chunk_50: | |
needs: npm-install | |
runs-on: ubuntu-latest | |
timeout-minutes: 20 | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-node@v4 | |
with: | |
node-version: 20.x | |
- uses: actions/cache@v3 | |
with: | |
path: | | |
node_modules | |
packages/functions/node_modules | |
packages/interfaces/node_modules | |
key: ${{ runner.os }}-modules-${{ hashFiles('**/package.json') }} | |
- name: Init | |
run: | | |
npm run build:functions | |
npm install -g firebase-tools | |
- name: Test | |
working-directory: packages/functions | |
run: | | |
export GOOGLE_APPLICATION_CREDENTIALS="./test-service-account-key.json" | |
npm run milestone-sync & | |
firebase emulators:exec " | |
npm run test-tangle:ci -- --forceExit --findRelatedTests ./test-tangle/stamp-tangle/stamp-tangle_5.spec.ts && | |
npm run test-tangle:ci -- --forceExit --findRelatedTests ./test-tangle/stamp-tangle/stamp-tangle_6.spec.ts && | |
npm run test-tangle:ci -- --forceExit --findRelatedTests ./test-tangle/tangleRequest/simple.token.trade.spec.ts | |
" --project dev --only functions,firestore,storage,ui,auth --export-on-exit=./firestore-data | |
- name: Archive firestore data | |
uses: actions/upload-artifact@v3 | |
if: ${{ failure() }} | |
with: | |
name: firestore-data-test-tangle-chunk_50 | |
path: ./packages/functions/firestore-data/ | |
retention-days: 1 | |
chunk_51: | |
needs: npm-install | |
runs-on: ubuntu-latest | |
timeout-minutes: 20 | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-node@v4 | |
with: | |
node-version: 20.x | |
- uses: actions/cache@v3 | |
with: | |
path: | | |
node_modules | |
packages/functions/node_modules | |
packages/interfaces/node_modules | |
key: ${{ runner.os }}-modules-${{ hashFiles('**/package.json') }} | |
- name: Init | |
run: | | |
npm run build:functions | |
npm install -g firebase-tools | |
- name: Test | |
working-directory: packages/functions | |
run: | | |
export GOOGLE_APPLICATION_CREDENTIALS="./test-service-account-key.json" | |
npm run milestone-sync & | |
firebase emulators:exec " | |
npm run test-tangle:ci -- --forceExit --findRelatedTests ./test-tangle/tangleRequest/tangle-request.spec.ts && | |
npm run test-tangle:ci -- --forceExit --findRelatedTests ./test-tangle/token-import/token.import_1.spec.ts && | |
npm run test-tangle:ci -- --forceExit --findRelatedTests ./test-tangle/token-import/token.import_2.spec.ts | |
" --project dev --only functions,firestore,storage,ui,auth --export-on-exit=./firestore-data | |
- name: Archive firestore data | |
uses: actions/upload-artifact@v3 | |
if: ${{ failure() }} | |
with: | |
name: firestore-data-test-tangle-chunk_51 | |
path: ./packages/functions/firestore-data/ | |
retention-days: 1 | |
chunk_52: | |
needs: npm-install | |
runs-on: ubuntu-latest | |
timeout-minutes: 20 | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-node@v4 | |
with: | |
node-version: 20.x | |
- uses: actions/cache@v3 | |
with: | |
path: | | |
node_modules | |
packages/functions/node_modules | |
packages/interfaces/node_modules | |
key: ${{ runner.os }}-modules-${{ hashFiles('**/package.json') }} | |
- name: Init | |
run: | | |
npm run build:functions | |
npm install -g firebase-tools | |
- name: Test | |
working-directory: packages/functions | |
run: | | |
export GOOGLE_APPLICATION_CREDENTIALS="./test-service-account-key.json" | |
npm run milestone-sync & | |
firebase emulators:exec " | |
npm run test-tangle:ci -- --forceExit --findRelatedTests ./test-tangle/token.based.voting/stake.voting.spec.ts && | |
npm run test-tangle:ci -- --forceExit --findRelatedTests ./test-tangle/token.based.voting/token.based.voting_1.spec.ts && | |
npm run test-tangle:ci -- --forceExit --findRelatedTests ./test-tangle/token.based.voting/token.based.voting_2.spec.ts | |
" --project dev --only functions,firestore,storage,ui,auth --export-on-exit=./firestore-data | |
- name: Archive firestore data | |
uses: actions/upload-artifact@v3 | |
if: ${{ failure() }} | |
with: | |
name: firestore-data-test-tangle-chunk_52 | |
path: ./packages/functions/firestore-data/ | |
retention-days: 1 | |
chunk_53: | |
needs: npm-install | |
runs-on: ubuntu-latest | |
timeout-minutes: 20 | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-node@v4 | |
with: | |
node-version: 20.x | |
- uses: actions/cache@v3 | |
with: | |
path: | | |
node_modules | |
packages/functions/node_modules | |
packages/interfaces/node_modules | |
key: ${{ runner.os }}-modules-${{ hashFiles('**/package.json') }} | |
- name: Init | |
run: | | |
npm run build:functions | |
npm install -g firebase-tools | |
- name: Test | |
working-directory: packages/functions | |
run: | | |
export GOOGLE_APPLICATION_CREDENTIALS="./test-service-account-key.json" | |
npm run milestone-sync & | |
firebase emulators:exec " | |
npm run test-tangle:ci -- --forceExit --findRelatedTests ./test-tangle/token.based.voting/token.based.voting_3.spec.ts && | |
npm run test-tangle:ci -- --forceExit --findRelatedTests ./test-tangle/token.based.voting/token.based.voting_4.spec.ts && | |
npm run test-tangle:ci -- --forceExit --findRelatedTests ./test-tangle/token.based.voting/token.based.voting_5.spec.ts | |
" --project dev --only functions,firestore,storage,ui,auth --export-on-exit=./firestore-data | |
- name: Archive firestore data | |
uses: actions/upload-artifact@v3 | |
if: ${{ failure() }} | |
with: | |
name: firestore-data-test-tangle-chunk_53 | |
path: ./packages/functions/firestore-data/ | |
retention-days: 1 | |
chunk_54: | |
needs: npm-install | |
runs-on: ubuntu-latest | |
timeout-minutes: 20 | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-node@v4 | |
with: | |
node-version: 20.x | |
- uses: actions/cache@v3 | |
with: | |
path: | | |
node_modules | |
packages/functions/node_modules | |
packages/interfaces/node_modules | |
key: ${{ runner.os }}-modules-${{ hashFiles('**/package.json') }} | |
- name: Init | |
run: | | |
npm run build:functions | |
npm install -g firebase-tools | |
- name: Test | |
working-directory: packages/functions | |
run: | | |
export GOOGLE_APPLICATION_CREDENTIALS="./test-service-account-key.json" | |
npm run milestone-sync & | |
firebase emulators:exec " | |
npm run test-tangle:ci -- --forceExit --findRelatedTests ./test-tangle/token.mint/token.mint_1.spec.ts && | |
npm run test-tangle:ci -- --forceExit --findRelatedTests ./test-tangle/token.mint/token.mint_2.spec.ts && | |
npm run test-tangle:ci -- --forceExit --findRelatedTests ./test-tangle/token.mint/token.mint_3.spec.ts | |
" --project dev --only functions,firestore,storage,ui,auth --export-on-exit=./firestore-data | |
- name: Archive firestore data | |
uses: actions/upload-artifact@v3 | |
if: ${{ failure() }} | |
with: | |
name: firestore-data-test-tangle-chunk_54 | |
path: ./packages/functions/firestore-data/ | |
retention-days: 1 | |
chunk_55: | |
needs: npm-install | |
runs-on: ubuntu-latest | |
timeout-minutes: 20 | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-node@v4 | |
with: | |
node-version: 20.x | |
- uses: actions/cache@v3 | |
with: | |
path: | | |
node_modules | |
packages/functions/node_modules | |
packages/interfaces/node_modules | |
key: ${{ runner.os }}-modules-${{ hashFiles('**/package.json') }} | |
- name: Init | |
run: | | |
npm run build:functions | |
npm install -g firebase-tools | |
- name: Test | |
working-directory: packages/functions | |
run: | | |
export GOOGLE_APPLICATION_CREDENTIALS="./test-service-account-key.json" | |
npm run milestone-sync & | |
firebase emulators:exec " | |
npm run test-tangle:ci -- --forceExit --findRelatedTests ./test-tangle/token.mint/token.mint_4.spec.ts && | |
npm run test-tangle:ci -- --forceExit --findRelatedTests ./test-tangle/trade-base-token-order.spec.ts && | |
npm run test-tangle:ci -- --forceExit --findRelatedTests ./test-tangle/tran.match.spec.ts | |
" --project dev --only functions,firestore,storage,ui,auth --export-on-exit=./firestore-data | |
- name: Archive firestore data | |
uses: actions/upload-artifact@v3 | |
if: ${{ failure() }} | |
with: | |
name: firestore-data-test-tangle-chunk_55 | |
path: ./packages/functions/firestore-data/ | |
retention-days: 1 | |
chunk_56: | |
needs: npm-install | |
runs-on: ubuntu-latest | |
timeout-minutes: 20 | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-node@v4 | |
with: | |
node-version: 20.x | |
- uses: actions/cache@v3 | |
with: | |
path: | | |
node_modules | |
packages/functions/node_modules | |
packages/interfaces/node_modules | |
key: ${{ runner.os }}-modules-${{ hashFiles('**/package.json') }} | |
- name: Init | |
run: | | |
npm run build:functions | |
npm install -g firebase-tools | |
- name: Test | |
working-directory: packages/functions | |
run: | | |
export GOOGLE_APPLICATION_CREDENTIALS="./test-service-account-key.json" | |
npm run milestone-sync & | |
firebase emulators:exec " | |
npm run test-tangle:ci -- --forceExit --findRelatedTests ./test-tangle/transaction-trigger/transaction-trigger_1.spec.ts && | |
npm run test-tangle:ci -- --forceExit --findRelatedTests ./test-tangle/transaction-trigger/transaction-trigger_10.spec.ts && | |
npm run test-tangle:ci -- --forceExit --findRelatedTests ./test-tangle/transaction-trigger/transaction-trigger_11.spec.ts | |
" --project dev --only functions,firestore,storage,ui,auth --export-on-exit=./firestore-data | |
- name: Archive firestore data | |
uses: actions/upload-artifact@v3 | |
if: ${{ failure() }} | |
with: | |
name: firestore-data-test-tangle-chunk_56 | |
path: ./packages/functions/firestore-data/ | |
retention-days: 1 | |
chunk_57: | |
needs: npm-install | |
runs-on: ubuntu-latest | |
timeout-minutes: 20 | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-node@v4 | |
with: | |
node-version: 20.x | |
- uses: actions/cache@v3 | |
with: | |
path: | | |
node_modules | |
packages/functions/node_modules | |
packages/interfaces/node_modules | |
key: ${{ runner.os }}-modules-${{ hashFiles('**/package.json') }} | |
- name: Init | |
run: | | |
npm run build:functions | |
npm install -g firebase-tools | |
- name: Test | |
working-directory: packages/functions | |
run: | | |
export GOOGLE_APPLICATION_CREDENTIALS="./test-service-account-key.json" | |
npm run milestone-sync & | |
firebase emulators:exec " | |
npm run test-tangle:ci -- --forceExit --findRelatedTests ./test-tangle/transaction-trigger/transaction-trigger_12.spec.ts && | |
npm run test-tangle:ci -- --forceExit --findRelatedTests ./test-tangle/transaction-trigger/transaction-trigger_13.spec.ts && | |
npm run test-tangle:ci -- --forceExit --findRelatedTests ./test-tangle/transaction-trigger/transaction-trigger_14.spec.ts | |
" --project dev --only functions,firestore,storage,ui,auth --export-on-exit=./firestore-data | |
- name: Archive firestore data | |
uses: actions/upload-artifact@v3 | |
if: ${{ failure() }} | |
with: | |
name: firestore-data-test-tangle-chunk_57 | |
path: ./packages/functions/firestore-data/ | |
retention-days: 1 | |
chunk_58: | |
needs: npm-install | |
runs-on: ubuntu-latest | |
timeout-minutes: 20 | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-node@v4 | |
with: | |
node-version: 20.x | |
- uses: actions/cache@v3 | |
with: | |
path: | | |
node_modules | |
packages/functions/node_modules | |
packages/interfaces/node_modules | |
key: ${{ runner.os }}-modules-${{ hashFiles('**/package.json') }} | |
- name: Init | |
run: | | |
npm run build:functions | |
npm install -g firebase-tools | |
- name: Test | |
working-directory: packages/functions | |
run: | | |
export GOOGLE_APPLICATION_CREDENTIALS="./test-service-account-key.json" | |
npm run milestone-sync & | |
firebase emulators:exec " | |
npm run test-tangle:ci -- --forceExit --findRelatedTests ./test-tangle/transaction-trigger/transaction-trigger_2.spec.ts && | |
npm run test-tangle:ci -- --forceExit --findRelatedTests ./test-tangle/transaction-trigger/transaction-trigger_3.spec.ts && | |
npm run test-tangle:ci -- --forceExit --findRelatedTests ./test-tangle/transaction-trigger/transaction-trigger_4.spec.ts | |
" --project dev --only functions,firestore,storage,ui,auth --export-on-exit=./firestore-data | |
- name: Archive firestore data | |
uses: actions/upload-artifact@v3 | |
if: ${{ failure() }} | |
with: | |
name: firestore-data-test-tangle-chunk_58 | |
path: ./packages/functions/firestore-data/ | |
retention-days: 1 | |
chunk_59: | |
needs: npm-install | |
runs-on: ubuntu-latest | |
timeout-minutes: 20 | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-node@v4 | |
with: | |
node-version: 20.x | |
- uses: actions/cache@v3 | |
with: | |
path: | | |
node_modules | |
packages/functions/node_modules | |
packages/interfaces/node_modules | |
key: ${{ runner.os }}-modules-${{ hashFiles('**/package.json') }} | |
- name: Init | |
run: | | |
npm run build:functions | |
npm install -g firebase-tools | |
- name: Test | |
working-directory: packages/functions | |
run: | | |
export GOOGLE_APPLICATION_CREDENTIALS="./test-service-account-key.json" | |
npm run milestone-sync & | |
firebase emulators:exec " | |
npm run test-tangle:ci -- --forceExit --findRelatedTests ./test-tangle/transaction-trigger/transaction-trigger_5.spec.ts && | |
npm run test-tangle:ci -- --forceExit --findRelatedTests ./test-tangle/transaction-trigger/transaction-trigger_6.spec.ts && | |
npm run test-tangle:ci -- --forceExit --findRelatedTests ./test-tangle/transaction-trigger/transaction-trigger_7.spec.ts | |
" --project dev --only functions,firestore,storage,ui,auth --export-on-exit=./firestore-data | |
- name: Archive firestore data | |
uses: actions/upload-artifact@v3 | |
if: ${{ failure() }} | |
with: | |
name: firestore-data-test-tangle-chunk_59 | |
path: ./packages/functions/firestore-data/ | |
retention-days: 1 | |
chunk_60: | |
needs: npm-install | |
runs-on: ubuntu-latest | |
timeout-minutes: 20 | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-node@v4 | |
with: | |
node-version: 20.x | |
- uses: actions/cache@v3 | |
with: | |
path: | | |
node_modules | |
packages/functions/node_modules | |
packages/interfaces/node_modules | |
key: ${{ runner.os }}-modules-${{ hashFiles('**/package.json') }} | |
- name: Init | |
run: | | |
npm run build:functions | |
npm install -g firebase-tools | |
- name: Test | |
working-directory: packages/functions | |
run: | | |
export GOOGLE_APPLICATION_CREDENTIALS="./test-service-account-key.json" | |
npm run milestone-sync & | |
firebase emulators:exec " | |
npm run test-tangle:ci -- --forceExit --findRelatedTests ./test-tangle/transaction-trigger/transaction-trigger_8.spec.ts && | |
npm run test-tangle:ci -- --forceExit --findRelatedTests ./test-tangle/transaction-trigger/transaction-trigger_9.spec.ts && | |
npm run test-tangle:ci -- --forceExit --findRelatedTests ./test-tangle/web3/web3_1.spec.ts | |
" --project dev --only functions,firestore,storage,ui,auth --export-on-exit=./firestore-data | |
- name: Archive firestore data | |
uses: actions/upload-artifact@v3 | |
if: ${{ failure() }} | |
with: | |
name: firestore-data-test-tangle-chunk_60 | |
path: ./packages/functions/firestore-data/ | |
retention-days: 1 | |
chunk_61: | |
needs: npm-install | |
runs-on: ubuntu-latest | |
timeout-minutes: 20 | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-node@v4 | |
with: | |
node-version: 20.x | |
- uses: actions/cache@v3 | |
with: | |
path: | | |
node_modules | |
packages/functions/node_modules | |
packages/interfaces/node_modules | |
key: ${{ runner.os }}-modules-${{ hashFiles('**/package.json') }} | |
- name: Init | |
run: | | |
npm run build:functions | |
npm install -g firebase-tools | |
- name: Test | |
working-directory: packages/functions | |
run: | | |
export GOOGLE_APPLICATION_CREDENTIALS="./test-service-account-key.json" | |
npm run milestone-sync & | |
firebase emulators:exec " | |
npm run test-tangle:ci -- --forceExit --findRelatedTests ./test-tangle/web3/web3_2.spec.ts && | |
npm run test-tangle:ci -- --forceExit --findRelatedTests ./test-tangle/web3/web3_3.spec.ts && | |
npm run test-tangle:ci -- --forceExit --findRelatedTests ./test-tangle/withdraw-deposit-nft/deposit-withraw-nft_1_a.spec.ts | |
" --project dev --only functions,firestore,storage,ui,auth --export-on-exit=./firestore-data | |
- name: Archive firestore data | |
uses: actions/upload-artifact@v3 | |
if: ${{ failure() }} | |
with: | |
name: firestore-data-test-tangle-chunk_61 | |
path: ./packages/functions/firestore-data/ | |
retention-days: 1 | |
chunk_62: | |
needs: npm-install | |
runs-on: ubuntu-latest | |
timeout-minutes: 20 | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-node@v4 | |
with: | |
node-version: 20.x | |
- uses: actions/cache@v3 | |
with: | |
path: | | |
node_modules | |
packages/functions/node_modules | |
packages/interfaces/node_modules | |
key: ${{ runner.os }}-modules-${{ hashFiles('**/package.json') }} | |
- name: Init | |
run: | | |
npm run build:functions | |
npm install -g firebase-tools | |
- name: Test | |
working-directory: packages/functions | |
run: | | |
export GOOGLE_APPLICATION_CREDENTIALS="./test-service-account-key.json" | |
npm run milestone-sync & | |
firebase emulators:exec " | |
npm run test-tangle:ci -- --forceExit --findRelatedTests ./test-tangle/withdraw-deposit-nft/deposit-withraw-nft_1_b.spec.ts && | |
npm run test-tangle:ci -- --forceExit --findRelatedTests ./test-tangle/withdraw-deposit-nft/deposit-withraw-nft_1_c.spec.ts && | |
npm run test-tangle:ci -- --forceExit --findRelatedTests ./test-tangle/withdraw-deposit-nft/deposit-withraw-nft_10_1.spec.ts | |
" --project dev --only functions,firestore,storage,ui,auth --export-on-exit=./firestore-data | |
- name: Archive firestore data | |
uses: actions/upload-artifact@v3 | |
if: ${{ failure() }} | |
with: | |
name: firestore-data-test-tangle-chunk_62 | |
path: ./packages/functions/firestore-data/ | |
retention-days: 1 | |
chunk_63: | |
needs: npm-install | |
runs-on: ubuntu-latest | |
timeout-minutes: 20 | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-node@v4 | |
with: | |
node-version: 20.x | |
- uses: actions/cache@v3 | |
with: | |
path: | | |
node_modules | |
packages/functions/node_modules | |
packages/interfaces/node_modules | |
key: ${{ runner.os }}-modules-${{ hashFiles('**/package.json') }} | |
- name: Init | |
run: | | |
npm run build:functions | |
npm install -g firebase-tools | |
- name: Test | |
working-directory: packages/functions | |
run: | | |
export GOOGLE_APPLICATION_CREDENTIALS="./test-service-account-key.json" | |
npm run milestone-sync & | |
firebase emulators:exec " | |
npm run test-tangle:ci -- --forceExit --findRelatedTests ./test-tangle/withdraw-deposit-nft/deposit-withraw-nft_10_2.spec.ts && | |
npm run test-tangle:ci -- --forceExit --findRelatedTests ./test-tangle/withdraw-deposit-nft/deposit-withraw-nft_10_3.spec.ts && | |
npm run test-tangle:ci -- --forceExit --findRelatedTests ./test-tangle/withdraw-deposit-nft/deposit-withraw-nft_11.spec.ts | |
" --project dev --only functions,firestore,storage,ui,auth --export-on-exit=./firestore-data | |
- name: Archive firestore data | |
uses: actions/upload-artifact@v3 | |
if: ${{ failure() }} | |
with: | |
name: firestore-data-test-tangle-chunk_63 | |
path: ./packages/functions/firestore-data/ | |
retention-days: 1 | |
chunk_64: | |
needs: npm-install | |
runs-on: ubuntu-latest | |
timeout-minutes: 20 | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-node@v4 | |
with: | |
node-version: 20.x | |
- uses: actions/cache@v3 | |
with: | |
path: | | |
node_modules | |
packages/functions/node_modules | |
packages/interfaces/node_modules | |
key: ${{ runner.os }}-modules-${{ hashFiles('**/package.json') }} | |
- name: Init | |
run: | | |
npm run build:functions | |
npm install -g firebase-tools | |
- name: Test | |
working-directory: packages/functions | |
run: | | |
export GOOGLE_APPLICATION_CREDENTIALS="./test-service-account-key.json" | |
npm run milestone-sync & | |
firebase emulators:exec " | |
npm run test-tangle:ci -- --forceExit --findRelatedTests ./test-tangle/withdraw-deposit-nft/deposit-withraw-nft_12_a.spec.ts && | |
npm run test-tangle:ci -- --forceExit --findRelatedTests ./test-tangle/withdraw-deposit-nft/deposit-withraw-nft_12_b.spec.ts && | |
npm run test-tangle:ci -- --forceExit --findRelatedTests ./test-tangle/withdraw-deposit-nft/deposit-withraw-nft_13.spec.ts | |
" --project dev --only functions,firestore,storage,ui,auth --export-on-exit=./firestore-data | |
- name: Archive firestore data | |
uses: actions/upload-artifact@v3 | |
if: ${{ failure() }} | |
with: | |
name: firestore-data-test-tangle-chunk_64 | |
path: ./packages/functions/firestore-data/ | |
retention-days: 1 | |
chunk_65: | |
needs: npm-install | |
runs-on: ubuntu-latest | |
timeout-minutes: 20 | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-node@v4 | |
with: | |
node-version: 20.x | |
- uses: actions/cache@v3 | |
with: | |
path: | | |
node_modules | |
packages/functions/node_modules | |
packages/interfaces/node_modules | |
key: ${{ runner.os }}-modules-${{ hashFiles('**/package.json') }} | |
- name: Init | |
run: | | |
npm run build:functions | |
npm install -g firebase-tools | |
- name: Test | |
working-directory: packages/functions | |
run: | | |
export GOOGLE_APPLICATION_CREDENTIALS="./test-service-account-key.json" | |
npm run milestone-sync & | |
firebase emulators:exec " | |
npm run test-tangle:ci -- --forceExit --findRelatedTests ./test-tangle/withdraw-deposit-nft/deposit-withraw-nft_14.spec.ts && | |
npm run test-tangle:ci -- --forceExit --findRelatedTests ./test-tangle/withdraw-deposit-nft/deposit-withraw-nft_2.spec.ts && | |
npm run test-tangle:ci -- --forceExit --findRelatedTests ./test-tangle/withdraw-deposit-nft/deposit-withraw-nft_4_b.spec.ts | |
" --project dev --only functions,firestore,storage,ui,auth --export-on-exit=./firestore-data | |
- name: Archive firestore data | |
uses: actions/upload-artifact@v3 | |
if: ${{ failure() }} | |
with: | |
name: firestore-data-test-tangle-chunk_65 | |
path: ./packages/functions/firestore-data/ | |
retention-days: 1 | |
chunk_66: | |
needs: npm-install | |
runs-on: ubuntu-latest | |
timeout-minutes: 20 | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-node@v4 | |
with: | |
node-version: 20.x | |
- uses: actions/cache@v3 | |
with: | |
path: | | |
node_modules | |
packages/functions/node_modules | |
packages/interfaces/node_modules | |
key: ${{ runner.os }}-modules-${{ hashFiles('**/package.json') }} | |
- name: Init | |
run: | | |
npm run build:functions | |
npm install -g firebase-tools | |
- name: Test | |
working-directory: packages/functions | |
run: | | |
export GOOGLE_APPLICATION_CREDENTIALS="./test-service-account-key.json" | |
npm run milestone-sync & | |
firebase emulators:exec " | |
npm run test-tangle:ci -- --forceExit --findRelatedTests ./test-tangle/withdraw-deposit-nft/deposit-withraw-nft_4.spec.ts && | |
npm run test-tangle:ci -- --forceExit --findRelatedTests ./test-tangle/withdraw-deposit-nft/deposit-withraw-nft_5.spec.ts && | |
npm run test-tangle:ci -- --forceExit --findRelatedTests ./test-tangle/withdraw-deposit-nft/deposit-withraw-nft_6.spec.ts | |
" --project dev --only functions,firestore,storage,ui,auth --export-on-exit=./firestore-data | |
- name: Archive firestore data | |
uses: actions/upload-artifact@v3 | |
if: ${{ failure() }} | |
with: | |
name: firestore-data-test-tangle-chunk_66 | |
path: ./packages/functions/firestore-data/ | |
retention-days: 1 | |
chunk_67: | |
needs: npm-install | |
runs-on: ubuntu-latest | |
timeout-minutes: 20 | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-node@v4 | |
with: | |
node-version: 20.x | |
- uses: actions/cache@v3 | |
with: | |
path: | | |
node_modules | |
packages/functions/node_modules | |
packages/interfaces/node_modules | |
key: ${{ runner.os }}-modules-${{ hashFiles('**/package.json') }} | |
- name: Init | |
run: | | |
npm run build:functions | |
npm install -g firebase-tools | |
- name: Test | |
working-directory: packages/functions | |
run: | | |
export GOOGLE_APPLICATION_CREDENTIALS="./test-service-account-key.json" | |
npm run milestone-sync & | |
firebase emulators:exec " | |
npm run test-tangle:ci -- --forceExit --findRelatedTests ./test-tangle/withdraw-deposit-nft/deposit-withraw-nft_7.spec.ts && | |
npm run test-tangle:ci -- --forceExit --findRelatedTests ./test-tangle/withdraw-deposit-nft/deposit-withraw-nft_8.spec.ts && | |
npm run test-tangle:ci -- --forceExit --findRelatedTests ./test-tangle/withdraw-deposit-nft/deposit-withraw-nft_9.spec.ts | |
" --project dev --only functions,firestore,storage,ui,auth --export-on-exit=./firestore-data | |
- name: Archive firestore data | |
uses: actions/upload-artifact@v3 | |
if: ${{ failure() }} | |
with: | |
name: firestore-data-test-tangle-chunk_67 | |
path: ./packages/functions/firestore-data/ | |
retention-days: 1 | |
chunk_68: | |
needs: npm-install | |
runs-on: ubuntu-latest | |
timeout-minutes: 20 | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-node@v4 | |
with: | |
node-version: 20.x | |
- uses: actions/cache@v3 | |
with: | |
path: | | |
node_modules | |
packages/functions/node_modules | |
packages/interfaces/node_modules | |
key: ${{ runner.os }}-modules-${{ hashFiles('**/package.json') }} | |
- name: Init | |
run: | | |
npm run build:functions | |
npm install -g firebase-tools | |
- name: Test | |
working-directory: packages/functions | |
run: | | |
export GOOGLE_APPLICATION_CREDENTIALS="./test-service-account-key.json" | |
npm run milestone-sync & | |
firebase emulators:exec " | |
npm run test-tangle:ci -- --forceExit --findRelatedTests ./test-tangle/workflow-online.spec.ts && | |
npm run test-tangle:ci -- --forceExit --findRelatedTests ./test-tangle/workflow.spec.ts | |
" --project dev --only functions,firestore,storage,ui,auth --export-on-exit=./firestore-data | |
- name: Archive firestore data | |
uses: actions/upload-artifact@v3 | |
if: ${{ failure() }} | |
with: | |
name: firestore-data-test-tangle-chunk_68 | |
path: ./packages/functions/firestore-data/ | |
retention-days: 1 | |
chunk_69: | |
needs: npm-install | |
runs-on: ubuntu-latest | |
timeout-minutes: 20 | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-node@v4 | |
with: | |
node-version: 20.x | |
- uses: actions/cache@v3 | |
with: | |
path: | | |
node_modules | |
packages/functions/node_modules | |
packages/interfaces/node_modules | |
key: ${{ runner.os }}-modules-${{ hashFiles('**/package.json') }} | |
- name: Init | |
run: | | |
npm run build:functions | |
npm install -g firebase-tools | |
- name: Test | |
working-directory: packages/functions | |
run: | | |
export GOOGLE_APPLICATION_CREDENTIALS="./test-service-account-key.json" | |
npm run milestone-sync & | |
firebase emulators:exec " | |
npm run test-tangle:ci -- --forceExit --findRelatedTests ./test-tangle/collection-minting/collection-minting_3.only.spec.ts | |
" --project dev --only functions,firestore,storage,ui,auth --export-on-exit=./firestore-data | |
- name: Archive firestore data | |
uses: actions/upload-artifact@v3 | |
if: ${{ failure() }} | |
with: | |
name: firestore-data-test-tangle-chunk_69 | |
path: ./packages/functions/firestore-data/ | |
retention-days: 1 | |
chunk_70: | |
needs: npm-install | |
runs-on: ubuntu-latest | |
timeout-minutes: 20 | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-node@v4 | |
with: | |
node-version: 20.x | |
- uses: actions/cache@v3 | |
with: | |
path: | | |
node_modules | |
packages/functions/node_modules | |
packages/interfaces/node_modules | |
key: ${{ runner.os }}-modules-${{ hashFiles('**/package.json') }} | |
- name: Init | |
run: | | |
npm run build:functions | |
npm install -g firebase-tools | |
- name: Test | |
working-directory: packages/functions | |
run: | | |
export GOOGLE_APPLICATION_CREDENTIALS="./test-service-account-key.json" | |
npm run milestone-sync & | |
firebase emulators:exec " | |
npm run test-tangle:ci -- --forceExit --findRelatedTests ./test-tangle/minted-nft-trading/minted-nft-trading_11.only.spec.ts | |
" --project dev --only functions,firestore,storage,ui,auth --export-on-exit=./firestore-data | |
- name: Archive firestore data | |
uses: actions/upload-artifact@v3 | |
if: ${{ failure() }} | |
with: | |
name: firestore-data-test-tangle-chunk_70 | |
path: ./packages/functions/firestore-data/ | |
retention-days: 1 | |
chunk_71: | |
needs: npm-install | |
runs-on: ubuntu-latest | |
timeout-minutes: 20 | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-node@v4 | |
with: | |
node-version: 20.x | |
- uses: actions/cache@v3 | |
with: | |
path: | | |
node_modules | |
packages/functions/node_modules | |
packages/interfaces/node_modules | |
key: ${{ runner.os }}-modules-${{ hashFiles('**/package.json') }} | |
- name: Init | |
run: | | |
npm run build:functions | |
npm install -g firebase-tools | |
- name: Test | |
working-directory: packages/functions | |
run: | | |
export GOOGLE_APPLICATION_CREDENTIALS="./test-service-account-key.json" | |
npm run milestone-sync & | |
firebase emulators:exec " | |
npm run test-tangle:ci -- --forceExit --findRelatedTests ./test-tangle/minted-token-trade/minted-token-trade_15.only.spec.ts | |
" --project dev --only functions,firestore,storage,ui,auth --export-on-exit=./firestore-data | |
- name: Archive firestore data | |
uses: actions/upload-artifact@v3 | |
if: ${{ failure() }} | |
with: | |
name: firestore-data-test-tangle-chunk_71 | |
path: ./packages/functions/firestore-data/ | |
retention-days: 1 |