Skip to content

Merge pull request #9395 from surveyjs/issue/9393-A-loading-indicator… #3092

Merge pull request #9395 from surveyjs/issue/9393-A-loading-indicator…

Merge pull request #9395 from surveyjs/issue/9393-A-loading-indicator… #3092

Workflow file for this run

name: NodeJS 16.x
on:
push:
branches: [ "master" ]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [16.x]
steps:
- uses: actions/checkout@v3
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
- name: Build Core
run: |
cd ./packages/survey-core
npm install
npm run build:all
- name: Build React UI
run: |
cd ./packages/survey-react-ui
npm install
npm run build
- name: Build Angular UI
run: |
cd ./packages/survey-angular-ui
npm install
npm run build
- name: Build Vue3 UI
run: |
cd ./packages/survey-vue3-ui
npm install
npm run build
- name: Build JS UI
run: |
cd ./packages/survey-js-ui
npm install
npm run build