Fixed an Issue Where matchContributionHash
Might Not Compatible on Windows Systems
#302
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: Deploy and Test Dev | |
on: | |
pull_request: | |
branches: dev | |
push: | |
branches: dev | |
workflow_dispatch: | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.head_ref || github.run_id }} | |
cancel-in-progress: true | |
jobs: | |
deploy-dev: | |
uses: ./.github/workflows/firebase-deploy-dev.yaml | |
secrets: inherit | |
with: | |
environment: dev | |
branch: ${{ github.ref }} | |
firebase_project: ${{ vars.FIREBASE_PROJECT_DEV }} | |
test-dev: | |
needs: deploy-dev | |
uses: ./.github/workflows/firebase-test.yaml | |
secrets: inherit | |
with: | |
environment: dev | |
github_ref: ${{ github.ref }} | |
firebase_project: ${{ vars.FIREBASE_PROJECT_DEV }} |