Skip to content

chore: Enable manual trigger for each workflow #3150

chore: Enable manual trigger for each workflow

chore: Enable manual trigger for each workflow #3150

Workflow file for this run

name: lint-check

Check failure on line 1 in .github/workflows/lint-check.yml

View workflow run for this annotation

GitHub Actions / .github/workflows/lint-check.yml

Invalid workflow file

`pull_request workflow_dispatch` is not a valid event name
on: pull_request
workflow_dispatch
jobs:
eslint:
name: Run lint check
runs-on: ubuntu-latest
steps:
- name: Check out Git repository
uses: actions/checkout@v3
with:
fetch-depth: 1
- name: Set up Node.js
uses: actions/setup-node@v3
with:
node-version: 18.17
cache: 'yarn'
- name: Install Node.js dependencies
run: yarn install
- name: Lint check
run: yarn lint:check