Skip to content

Commit

Permalink
readme
Browse files Browse the repository at this point in the history
  • Loading branch information
DE7924 committed Dec 6, 2024
1 parent 1c11d1f commit 37f538b
Show file tree
Hide file tree
Showing 3 changed files with 32 additions and 50 deletions.
1 change: 0 additions & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,6 @@ jobs:
cache: npm

- name: Code Quality
id: wc-code-quality
uses: ./
with:
token: ${{ secrets.PAT }}
49 changes: 0 additions & 49 deletions .github/workflows/linter.yml

This file was deleted.

32 changes: 32 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,38 @@ This action is designed to format and test Flutter repositories on pull requests

Follow the instructions below to integrate this action into your workflow.

```yml
name: CI - Pull Request

on:
pull_request:
branches:
- main

permissions:
contents: write
issues: write

jobs:
code-quality:
runs-on: ubuntu-latest

steps:
- name: Checkout Branch
uses: actions/checkout@v4

- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version-file: .node-version
cache: npm

- name: Code Quality
uses: ZebraDevs/web-components-code-quality@main
with:
token: ${{ secrets.GITHUB_TOKEN }}
```
## Inputs
| Name | Description | Required | Default |
Expand Down

0 comments on commit 37f538b

Please sign in to comment.