Skip to content

Updated build system on workflow pipeline action. #2

Updated build system on workflow pipeline action.

Updated build system on workflow pipeline action. #2

name: VSCode Extension Build
on:
push:
branches:
- main
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v2
- name: Fetch NodeJS
uses: actions/setup-node@v4
with:
node-version: 20
- name: Build N8 VSCode extension
run: |
chmod +x build.sh
./build.sh
- name: Upload dist folder
uses: actions/upload-artifact@v4
with:
name: n8-vsce
path: n8-lang-vsce-0.0.1.vsix
retention-days: 1