File tree Expand file tree Collapse file tree 4 files changed +5
-1
lines changed Expand file tree Collapse file tree 4 files changed +5
-1
lines changed Original file line number Diff line number Diff line change @@ -22,4 +22,6 @@ gpg --quiet --batch --yes --decrypt --passphrase="${FIREBASE_SERVICE_ACCT_KEY}"
22
22
23
23
echo " ${FIREBASE_API_KEY} " > test/resources/apikey.txt
24
24
25
+ echo " ${FIREBASE_APP_ID} " > test/resources/appid.txt
26
+
25
27
npm run test:integration -- --updateRules --testMultiTenancy
Original file line number Diff line number Diff line change 55
55
env :
56
56
FIREBASE_SERVICE_ACCT_KEY : ${{ secrets.FIREBASE_SERVICE_ACCT_KEY }}
57
57
FIREBASE_API_KEY : ${{ secrets.FIREBASE_API_KEY }}
58
+ FIREBASE_APP_ID : ${{ secrets.FIREBASE_APP_ID }}
58
59
59
60
- name : Package release artifacts
60
61
run : |
Original file line number Diff line number Diff line change 66
66
env :
67
67
FIREBASE_SERVICE_ACCT_KEY : ${{ secrets.FIREBASE_SERVICE_ACCT_KEY }}
68
68
FIREBASE_API_KEY : ${{ secrets.FIREBASE_API_KEY }}
69
+ FIREBASE_APP_ID : ${{ secrets.FIREBASE_APP_ID }}
69
70
70
71
- name : Package release artifacts
71
72
run : |
Original file line number Diff line number Diff line change @@ -34,7 +34,7 @@ let appId: string;
34
34
describe ( 'admin.appCheck' , ( ) => {
35
35
before ( async ( ) => {
36
36
try {
37
- appId = fs . readFileSync ( path . join ( __dirname , '../resources/appId .txt' ) ) . toString ( ) . trim ( ) ;
37
+ appId = fs . readFileSync ( path . join ( __dirname , '../resources/appid .txt' ) ) . toString ( ) . trim ( ) ;
38
38
} catch ( error ) {
39
39
console . log ( chalk . yellow (
40
40
'Unable to find an an App ID. Skipping tests that require a valid App ID.' ,
You can’t perform that action at this time.
0 commit comments