Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions .github/workflows/dart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ jobs:
container:
image: google/dart:2.12-dev
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3
- name: Check for no lint Errors and no TODO comments
run: ./scripts/check_for_lint_errors_and_TODO_comments.sh

Expand All @@ -21,7 +21,7 @@ jobs:
container:
image: google/dart:2.12-dev
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3
- name: Check that code is formatted
run: ./scripts/check_code_is_formatted.sh

Expand All @@ -30,7 +30,7 @@ jobs:
container:
image: google/dart:2.12-dev
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3
- name: Run all tests that contact the remote Firestore database.
env:
FIRESTORE_CREDENTIALS: ${{ secrets.FIRESTORE_CREDENTIALS }}
Expand All @@ -45,7 +45,7 @@ jobs:
# container:
# image: google/dart:2.12-dev
# steps:
# - uses: actions/checkout@v2
# - uses: actions/checkout@v3
# - name: Run tests
# env:
# FIRESTORE_CREDENTIALS: ${{ secrets.FIRESTORE_CREDENTIALS }}
Expand Down