Skip to content

Update engine

Update engine #3

Workflow file for this run

name: Build And Push
on: [push, pull_request]
jobs:
build:
name: Build
runs-on: ubuntu-latest
steps:
- name: checkout repo
uses: actions/checkout@v3
- name: setup node
uses: actions/setup-node@v3
- name: clean install dependencies
run: cd client && npm ci
- name: compile and create vsix
run: |
cd client
npm install
npm install -g vsce
npm run compile
npm run webpack
npm run vscepack
# - name: upload vsix as artifact
# uses: actions/upload-artifact@v1
# with:
# name: .vsix.zip
# path: client/.vsix