Skip to content

Merge pull request #80 from rzk-lang/release-v0.6.1 #118

Merge pull request #80 from rzk-lang/release-v0.6.1

Merge pull request #80 from rzk-lang/release-v0.6.1 #118

Workflow file for this run

name: Compile the extension
on:
push:
branches:
- main
pull_request:
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout 🛎️
uses: actions/checkout@v3
- name: Set up Node 20 📦
uses: actions/setup-node@v4
with:
node-version: '20'
cache: npm
- name: Install dependencies 🧰
run: |
npm ci
npm install -g @vscode/vsce
- name: Build and package the extension 🔧
run: |
# Equivalent to a dry run of the publish command
# Runs the prepublish script, which runs the compile script
vsce ls
- name: Run grammar tests 🧪
run: npm test