From 6e8f7cf9d368a47235068632dc6e07a41f7ca6d5 Mon Sep 17 00:00:00 2001 From: Ed Page Date: Sat, 5 Jun 2021 13:18:03 -0500 Subject: [PATCH] test(action): Update test case for typos --- .github/workflows/test-action.yml | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/test-action.yml b/.github/workflows/test-action.yml index 9a8a14a..74947f5 100644 --- a/.github/workflows/test-action.yml +++ b/.github/workflows/test-action.yml @@ -10,16 +10,16 @@ jobs: uses: actions/checkout@v2 - name: Prepare file with mistakes. - run: echo "The quick brown foxx jumped over the slepy dog." > file.txt + run: echo "Finallizes" > file.txt - name: Test force pass with mistakes continue-on-error: true uses: ./ - with: + with: files: ./file.txt - name: Prepare file with no mistakes. - run: echo "The quick brown fox jumped over the sleepy dog." > file.txt - - name: Test force pass with no mistakes + run: echo "Finalizes" > file.txt + - name: Test pass with no mistakes uses: ./ - with: + with: files: ./file.txt