Skip to content

Latest commit

 

History

History
30 lines (23 loc) · 586 Bytes

README.md

File metadata and controls

30 lines (23 loc) · 586 Bytes

Upload test results to Firebase

Set up

npm install

Usage

In GitHub actions:

- name: Upload unit test results
    uses: bolteu/[email protected]
    if: failure()
    with:
        service-json: ${{ secrets.FIREBASE_STORAGE_JSON_KEY }}
        github-token: ${{secrets.GITHUB_TOKEN}}
        bucketName: "ios-ui-tests"
        bucketFolder: "client"
        directoryPath: "fastlane/test_output/test_result.xcresult"
        testNamePrefix: "Unit"

After any change you have to rebuild dist/index.js before commit:

npm run build