This repository has been archived by the owner on Oct 15, 2024. It is now read-only.
Update README.md #277
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: lint text | |
on: | |
push: | |
repository_dispatch: | |
types: [lint-text] | |
pull_request: | |
types: [opened, synchronize, reopened] | |
jobs: | |
build: | |
name: lint text | |
runs-on: ubuntu-22.04 | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: pnpm/action-setup@v2.2.2 | |
with: | |
version: latest | |
- run: pnpm install | |
- name: lint text | |
run: pnpm run lint |