From b0d9b792c778a8069ec7ef40c650e0779b39bd49 Mon Sep 17 00:00:00 2001 From: psvoboda76 Date: Fri, 24 Nov 2023 14:39:02 +0100 Subject: [PATCH] Create manual.yml --- .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 000000000..2b482b013 --- /dev/null +++ b/.github/workflows/manual.yml @@ -0,0 +1,22 @@ +name: manage npm build on demand TETS + +on: workflow_dispatch + +jobs: + build: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v3 + - uses: actions/setup-node@v3 + with: + node-version: 16.x + - run: | + npm ci + npm run build --workspace=packages/svgcanvas + npm run lint + npm run test + npm run build + + + +