Updated list of reserved keywords. #3
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |