Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Stamp api #2602

Merged
merged 2 commits into from
Sep 29, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
13 changes: 7 additions & 6 deletions .github/workflows/functions_emulated-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -137,10 +137,10 @@ jobs:
npm run test:ci -- --findRelatedTests test/controls/token-trade.buy.spec.ts &&
npm run test:ci -- --findRelatedTests test/controls/token-distribution.spec.ts &&
npm run test:ci -- --findRelatedTests test/controls/token-distribution-auto-trigger.spec.ts &&
npm run test:ci -- --findRelatedTests test/controls/stamp.control.spec.ts &&
npm run test:ci -- --findRelatedTests test/controls/stake.reward.spec.ts &&
npm run test:ci -- --findRelatedTests test/controls/space.spec.ts &&
npm run test:ci -- --findRelatedTests test/controls/proposal.spec.ts &&
npm run test:ci -- --findRelatedTests test/controls/order.spec.ts
npm run test:ci -- --findRelatedTests test/controls/proposal.spec.ts
" --project dev --only functions,firestore,storage,ui,auth --export-on-exit=./firestore-data
- name: Archive firestore data
uses: actions/upload-artifact@v3
Expand Down Expand Up @@ -175,13 +175,13 @@ jobs:
export GOOGLE_APPLICATION_CREDENTIALS="./test-service-account-key.json"
npm run milestone-sync &
firebase emulators:exec "
npm run test:ci -- --findRelatedTests test/controls/order.spec.ts &&
npm run test:ci -- --findRelatedTests test/controls/nft.spec.ts &&
npm run test:ci -- --findRelatedTests test/controls/nft-bidding.spec.ts &&
npm run test:ci -- --findRelatedTests test/controls/member.spec.ts &&
npm run test:ci -- --findRelatedTests test/controls/collection.spec.ts &&
npm run test:ci -- --findRelatedTests test/controls/address.spec.ts &&
npm run test:ci -- --findRelatedTests test/controls/token/token.vote.spec.ts &&
npm run test:ci -- --findRelatedTests test/controls/token/token.update.spec.ts
npm run test:ci -- --findRelatedTests test/controls/token/token.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
Expand Down Expand Up @@ -216,13 +216,13 @@ jobs:
export GOOGLE_APPLICATION_CREDENTIALS="./test-service-account-key.json"
npm run milestone-sync &
firebase emulators:exec "
npm run test:ci -- --findRelatedTests test/controls/token/token.update.spec.ts &&
npm run test:ci -- --findRelatedTests test/controls/token/token.set.to.sale.spec.ts &&
npm run test:ci -- --findRelatedTests test/controls/token/token.rank.spec.ts &&
npm run test:ci -- --findRelatedTests test/controls/token/token.order.and.claim.air.spec.ts &&
npm run test:ci -- --findRelatedTests test/controls/token/token.create.spec.ts &&
npm run test:ci -- --findRelatedTests test/controls/token/token.cancel.pub.sale.spec.ts &&
npm run test:ci -- --findRelatedTests test/controls/token/token.airdrop.spec.ts &&
npm run test:ci -- --findRelatedTests test/controls/token/token.airdrop.claim.spec.ts
npm run test:ci -- --findRelatedTests test/controls/token/token.airdrop.spec.ts
" --project dev --only functions,firestore,storage,ui,auth --export-on-exit=./firestore-data
- name: Archive firestore data
uses: actions/upload-artifact@v3
Expand Down Expand Up @@ -257,6 +257,7 @@ jobs:
export GOOGLE_APPLICATION_CREDENTIALS="./test-service-account-key.json"
npm run milestone-sync &
firebase emulators:exec "
npm run test:ci -- --findRelatedTests test/controls/token/token.airdrop.claim.spec.ts &&
npm run test:ci -- --findRelatedTests test/controls/project/project.deactivate.spec.ts &&
npm run test:ci -- --findRelatedTests test/controls/project/project.create.spec.ts
" --project dev --only functions,firestore,storage,ui,auth --export-on-exit=./firestore-data
Expand Down
13 changes: 7 additions & 6 deletions .github/workflows/functions_online-emulated-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -138,11 +138,11 @@ jobs:
firebase emulators:exec "
npm run test-online:ci -- --findRelatedTests test/controls/token-distribution.spec.ts &&
npm run test-online:ci -- --findRelatedTests test/controls/token-distribution-auto-trigger.spec.ts &&
npm run test-online:ci -- --findRelatedTests test/controls/stamp.control.spec.ts &&
npm run test-online:ci -- --findRelatedTests test/controls/stake.reward.spec.ts &&
npm run test-online:ci -- --findRelatedTests test/controls/space.spec.ts &&
npm run test-online:ci -- --findRelatedTests test/controls/proposal.spec.ts &&
npm run test-online:ci -- --findRelatedTests test/controls/order.spec.ts &&
npm run test-online:ci -- --findRelatedTests test/controls/nft.spec.ts
npm run test-online:ci -- --findRelatedTests test/controls/order.spec.ts
" --project dev --only functions,firestore,storage,ui,auth --export-on-exit=./firestore-data
- name: Archive firestore data
uses: actions/upload-artifact@v3
Expand Down Expand Up @@ -177,13 +177,13 @@ jobs:
export GOOGLE_APPLICATION_CREDENTIALS="./test-service-account-key.json"
npm run milestone-sync &
firebase emulators:exec "
npm run test-online:ci -- --findRelatedTests test/controls/nft.spec.ts &&
npm run test-online:ci -- --findRelatedTests test/controls/nft-bidding.spec.ts &&
npm run test-online:ci -- --findRelatedTests test/controls/member.spec.ts &&
npm run test-online:ci -- --findRelatedTests test/controls/collection.spec.ts &&
npm run test-online:ci -- --findRelatedTests test/controls/address.spec.ts &&
npm run test-online:ci -- --findRelatedTests test/controls/token/token.vote.spec.ts &&
npm run test-online:ci -- --findRelatedTests test/controls/token/token.update.spec.ts &&
npm run test-online:ci -- --findRelatedTests test/controls/token/token.set.to.sale.spec.ts
npm run test-online:ci -- --findRelatedTests test/controls/token/token.update.spec.ts
" --project dev --only functions,firestore,storage,ui,auth --export-on-exit=./firestore-data
- name: Archive firestore data
uses: actions/upload-artifact@v3
Expand Down Expand Up @@ -218,13 +218,13 @@ jobs:
export GOOGLE_APPLICATION_CREDENTIALS="./test-service-account-key.json"
npm run milestone-sync &
firebase emulators:exec "
npm run test-online:ci -- --findRelatedTests test/controls/token/token.set.to.sale.spec.ts &&
npm run test-online:ci -- --findRelatedTests test/controls/token/token.rank.spec.ts &&
npm run test-online:ci -- --findRelatedTests test/controls/token/token.order.and.claim.air.spec.ts &&
npm run test-online:ci -- --findRelatedTests test/controls/token/token.create.spec.ts &&
npm run test-online:ci -- --findRelatedTests test/controls/token/token.cancel.pub.sale.spec.ts &&
npm run test-online:ci -- --findRelatedTests test/controls/token/token.airdrop.spec.ts &&
npm run test-online:ci -- --findRelatedTests test/controls/token/token.airdrop.claim.spec.ts &&
npm run test-online:ci -- --findRelatedTests test/controls/project/project.deactivate.spec.ts
npm run test-online:ci -- --findRelatedTests test/controls/token/token.airdrop.claim.spec.ts
" --project dev --only functions,firestore,storage,ui,auth --export-on-exit=./firestore-data
- name: Archive firestore data
uses: actions/upload-artifact@v3
Expand Down Expand Up @@ -259,6 +259,7 @@ jobs:
export GOOGLE_APPLICATION_CREDENTIALS="./test-service-account-key.json"
npm run milestone-sync &
firebase emulators:exec "
npm run test-online:ci -- --findRelatedTests test/controls/project/project.deactivate.spec.ts &&
npm run test-online:ci -- --findRelatedTests test/controls/project/project.create.spec.ts
" --project dev --only functions,firestore,storage,ui,auth --export-on-exit=./firestore-data
- name: Archive firestore data
Expand Down
Loading