From 9b920c60d8976b6f10f3bdb82b67782397469533 Mon Sep 17 00:00:00 2001 From: ciatph Date: Fri, 13 Sep 2024 15:18:05 +0800 Subject: [PATCH] wip: testing dispatch --- .github/workflows/manual.yml | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) create mode 100644 .github/workflows/manual.yml diff --git a/.github/workflows/manual.yml b/.github/workflows/manual.yml new file mode 100644 index 0000000..e8cb908 --- /dev/null +++ b/.github/workflows/manual.yml @@ -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