Skip to content

Commit

Permalink
chore(docs): add litemode notes (#41)
Browse files Browse the repository at this point in the history
  • Loading branch information
j-mendez committed Mar 23, 2023
1 parent 7c7f93b commit d8f359a
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 1 deletion.
2 changes: 2 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,8 @@ A feature rich GitHub action that runs actionable accessibility reports on your

Some of the primary features include pass/fail testing, code fixes, and detailed reports.

When running locally the action uses A11yWatch Lite.

### Usage

```yaml
Expand Down
10 changes: 9 additions & 1 deletion action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -114,11 +114,19 @@ runs:
sudo apt install -y protobuf-compiler libprotobuf-dev
- name: A11yWatch CLI Install
if: ${{ inputs.SLIM == 'true' }}
uses: baptiste0928/cargo-install@v1
with:
crate: a11ywatch_cli
version: "0.9.2"
features: "grpc"

- name: A11yWatch CLI Install
if: ${{ inputs.SLIM == 'false' }}
uses: baptiste0928/cargo-install@v1
with:
crate: a11ywatch_cli
version: "0.9.2"
features: ${{ inputs.SLIM && "grpc" }}

- name: Configure CLI creds
if: ${{ inputs.A11YWATCH_TOKEN }}
Expand Down

0 comments on commit d8f359a

Please sign in to comment.