We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5ea084a commit ab91be3Copy full SHA for ab91be3
.github/workflows/check_format.yml
@@ -66,8 +66,8 @@ jobs:
66
runs-on: ubuntu-22.04
67
if: always()
68
name: Check Format (matrix)
69
- needs: check_format
+ needs: [check_format, determine_changed]
70
steps:
71
- name: Check matrix
72
- if: needs.check_format.result != 'success'
+ if: ${{ needs.determine_changed.outputs.modules != "[]" && needs.check_format.result != 'success' }}
73
run: exit 1
README.md
@@ -8,6 +8,7 @@ More information about Firebase can be found at https://firebase.google.com.
8
## Table of contents
9
10
1. [Getting Started](#getting-started)
11
+
12
1. [Testing](#testing)
13
1. [Unit Testing](#unit-testing)
14
1. [Integration Testing](#integration-testing)
0 commit comments