Skip to content

EPIC README + publishing marketplace #332

EPIC README + publishing marketplace

EPIC README + publishing marketplace #332

Workflow file for this run

# This workflow will do a clean install of node dependencies, build the source code and run tests across different versions of node
# For more information see: https://help.github.com/actions/language-and-framework-guides/using-nodejs-with-github-actions
name: Node.js CI
on:
push:
branches:
- master
pull_request:
jobs:
test:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [windows-latest, ubuntu-latest, macos-latest]
node-version: [lts/hydrogen]
steps:
- uses: actions/checkout@v3
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
- run: npm install
- run: npm run compile
- name: Run headless test
if: matrix.os != 'ubuntu-latest' # we need to fix ubuntu-latest first
uses: smithki/[email protected]
with:
run: npm run test-with-coverage:e2e
- name: Unit Tests
run: npm run test-with-coverage:unit
- name: Update server coverage badge
uses: codecov/codecov-action@v3
if: matrix.os == 'ubuntu-latest'
with:
files: ./server/coverage/coverage-final.json
verbose: true
flags: lsp-ide-server
- name: Update client coverage badge
uses: codecov/codecov-action@v3
if: matrix.os == 'windows-latest'
with:
files: ./client/coverage/coverage-final.json
verbose: true
flags: lsp-ide-client
- name: Generate VSIX file
if: matrix.os == 'ubuntu-latest'
run: |
npm i -g vsce
vsce package
- name: Add VSIX to the latest release
if: matrix.os == 'ubuntu-latest'
uses: "marvinpinto/action-automatic-releases@latest"
with:
repo_token: "${{ secrets.GITHUB_TOKEN }}"
automatic_release_tag: "draft"
prerelease: true
title: "Draft"
files: |
./*.vsix