feat(auth): Expose modular API that matches the Firebase web JS SDK v9 API #3119
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: 'PR Title is Conventional' | |
on: | |
pull_request_target: | |
types: | |
- opened | |
- edited | |
- synchronize | |
permissions: | |
contents: read | |
jobs: | |
main: | |
permissions: | |
contents: none | |
runs-on: ubuntu-latest | |
env: | |
GITHUB_TOKEN: ${{ secrets.GH_TOKEN }} | |
steps: | |
- uses: actions/setup-node@v3 | |
with: | |
node-version: 18 | |
- uses: amannn/action-semantic-pull-request@v5 | |
with: | |
validateSingleCommit: true | |
validateSingleCommitMatchesPrTitle: true |