Skip to content

Commit f2011f0

Browse files
committed
Fix syntax
1 parent 514ed06 commit f2011f0

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/workflows/lint.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -61,15 +61,15 @@ jobs:
6161
# If we are running for a push on the main repo, go ahead and auto-fix issues
6262
- name: Lint and format
6363
uses: rkuykendall/lint-action@master
64-
if: ${{ gitgub.repository == "Wingysam/Christmas-Community" && github.event.name == "push" }}
64+
if: ${{ github.repository == 'Wingysam/Christmas-Community' && github.event.name == 'push' }}
6565
with:
6666
auto_fix: true
6767
eslint: true
6868
prettier: true
6969

7070
# Otherwise, just fail the job if there are linter or formatter issues
7171
- name: Lint and check format
72-
if: ${{ github.event.name == "pull_request" || github.event.name == "pull_request_trigger" }}
72+
if: ${{ github.event.name == 'pull_request' || github.event.name == 'pull_request_trigger' }}
7373
run:
7474
- npx eslint
7575
- npx prettier . --check

0 commit comments

Comments
 (0)