Skip to content

Commit

Permalink
wip: testing dispatch
Browse files Browse the repository at this point in the history
  • Loading branch information
ciatph committed Sep 13, 2024
1 parent eba8f1d commit 9b920c6
Showing 1 changed file with 22 additions and 0 deletions.
22 changes: 22 additions & 0 deletions .github/workflows/manual.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
name: Manual Trigger Workflow

# configure manual trigger
on:
workflow_dispatch:

jobs:
lint-app:
name: Lint App
runs-on: ubuntu-latest
steps:
- name: Checkout the repository
uses: actions/checkout@v3
- name: Use NodeJS v16.14.2
uses: actions/setup-node@v3
with:
node-version: 16.14.2
- name: Install Dependencies and lint
run: |
cd app
npm install
npm run lint

0 comments on commit 9b920c6

Please sign in to comment.