Skip to content

Introduce new LS API to get the design model for a ballerina package #1495

Introduce new LS API to get the design model for a ballerina package

Introduce new LS API to get the design model for a ballerina package #1495

Workflow file for this run

name: PR build
on: [push, pull_request]
jobs:
ubuntu-build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Use Node.js
uses: actions/setup-node@v1
with:
node-version: '10.22.1'
- name: Set up JDK 21
uses: actions/setup-java@v3
with:
distribution: 'temurin'
java-version: 21.0.3
- name: Set Up Ballerina
uses: ballerina-platform/[email protected]
with:
version: latest
- name: Build with Gradle
env:
packageUser: ${{ github.actor }}
packagePAT: ${{ secrets.GITHUB_TOKEN }}
run: ./gradlew build -x :createArtifactZip
- name: Generate Codecov Report
if: github.event_name == 'pull_request'
uses: codecov/codecov-action@v1
windows-build:
runs-on: windows-latest
steps:
- uses: actions/checkout@v3
- name: Use Node.js
uses: actions/setup-node@v1
with:
node-version: '10.22.1'
- name: Set up JDK 21
uses: actions/setup-java@v3
with:
distribution: 'temurin'
java-version: 21.0.3
- name: Set Up Ballerina
uses: ballerina-platform/[email protected]
with:
version: latest
- name: Build with Gradle
env:
packageUser: ${{ github.actor }}
packagePAT: ${{ secrets.GITHUB_TOKEN }}
run: ./gradlew.bat build -x :createArtifactZip
windows-build-2:
runs-on: windows-latest
steps:
- name: Initialize
run: |
git config --system core.longpaths true
- uses: actions/checkout@v4
with:
path: 'test folder'
- name: Use Node.js
uses: actions/setup-node@v1
with:
node-version: '10.22.1'
- name: Set up JDK 21
uses: actions/setup-java@v3
with:
distribution: 'temurin'
java-version: 21.0.3
- name: Set Up Ballerina
uses: ballerina-platform/[email protected]
with:
version: latest
- name: Build with Gradle
env:
packageUser: ${{ github.actor }}
packagePAT: ${{ secrets.GITHUB_TOKEN }}
run: |
./gradlew.bat build -x :createArtifactZip -x test
./gradlew.bat :flow-model-generator:flow-model-generator-ls-extension:test
working-directory: ${{ github.workspace }}/test folder