Skip to content

Commit

Permalink
typos
Browse files Browse the repository at this point in the history
  • Loading branch information
albertmink committed Mar 19, 2024
1 parent b61dee6 commit 960bdb7
Showing 1 changed file with 5 additions and 5 deletions.
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: Compability Check
name: Compatibility Check

on:
pull_request:
Expand All @@ -14,14 +14,14 @@ jobs:
fetch-depth: 0
- uses: actions/setup-node@v4
- name: Run script
id: check_incompability
id: check_incompatibility
run: |
cd .github/compability
cd .github/compatibility
npm ci
npm run check
- name: Add label PR on failure
if: failure() && steps.check_incompability.outcome == 'failure' # Only runs if your script failed.
if: failure() && steps.check_incompatibility.outcome == 'failure' # Only runs if your script failed.
uses: actions/github-script@v7
with:
script: |
Expand All @@ -41,7 +41,7 @@ jobs:
github-token: ${{secrets.GITHUB_TOKEN}}

- name: Remove label PR on success
if: steps.check_incompability.outcome == 'success'
if: steps.check_incompatibility.outcome == 'success'
uses: actions/github-script@v7
with:
script: |
Expand Down

0 comments on commit 960bdb7

Please sign in to comment.