Skip to content

feat(action): Add support for force-exclude option #850

feat(action): Add support for force-exclude option

feat(action): Add support for force-exclude option #850

Workflow file for this run

name: Test GitHub Action
on: [pull_request]
jobs:
shallow:
name: Spell Check with Typos
strategy:
matrix:
os: [ubuntu-latest, macos-latest, windows-latest]
runs-on: ${{ matrix.os }}
steps:
- name: Checkout Actions Repository
uses: actions/checkout@v4
- name: Install wget for Windows
if: matrix.os == 'windows-latest'
run: choco install wget --no-progress
- name: Prepare file with mistakes.
run: echo "Finallizes" > file.txt
- name: Test force pass with mistakes
continue-on-error: true
uses: ./
with:
files: ./file.txt
- name: Prepare file with no mistakes.
run: echo "Finalizes" > file.txt
- name: Test pass with no mistakes
uses: ./
with:
files: ./file.txt
deep:
name: Spell Check with Type w/History
strategy:
matrix:
os: [ubuntu-latest, macos-latest, windows-latest]
runs-on: ${{ matrix.os }}
steps:
- name: Checkout Actions Repository
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Install wget for Windows
if: matrix.os == 'windows-latest'
run: choco install wget --no-progress
- name: Prepare file with mistakes.
run: echo "Finallizes" > file.txt
- name: Test force pass with mistakes
continue-on-error: true
uses: ./
with:
files: ./file.txt
- name: Prepare file with no mistakes.
run: echo "Finalizes" > file.txt
- name: Test pass with no mistakes
uses: ./
with:
files: ./file.txt