From 10bf1493a4b6190c956b2b77e5d4ad39904b0850 Mon Sep 17 00:00:00 2001 From: Nathanne Isip Date: Fri, 6 Dec 2024 23:52:29 +0800 Subject: [PATCH] Updated GitHub workflow pipelines. --- .github/workflows/build_ci_vsce.yml | 40 ----------------------------- 1 file changed, 40 deletions(-) delete mode 100644 .github/workflows/build_ci_vsce.yml diff --git a/.github/workflows/build_ci_vsce.yml b/.github/workflows/build_ci_vsce.yml deleted file mode 100644 index 145489c..0000000 --- a/.github/workflows/build_ci_vsce.yml +++ /dev/null @@ -1,40 +0,0 @@ -name: VSCode Extension Build - -on: - push: - paths: - - .github/workflows/** - - extension/** - branches: - - main - -jobs: - build: - runs-on: ubuntu-latest - defaults: - run: - working-directory: ./extension - - steps: - - name: Checkout code - uses: actions/checkout@v2 - - - name: Fetch NodeJS - uses: actions/setup-node@v4 - with: - node-version: 20 - - - name: Install Node modules - run: | - npm install - - - name: Build as VSCode extension - run: | - npx vsce package - - - name: Upload dist folder - uses: actions/upload-artifact@v4 - with: - name: n8-vsce - path: extension/n8-lang-vsce-0.0.1.vsix - retention-days: 1