Merge pull request #9381 from surveyjs/feature/7368-dnd-abandon-inlin… #2553
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: NodeJS 18.x | |
on: | |
push: | |
branches: [ "master" ] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
node-version: [18.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 | |
export NODE_OPTIONS=--openssl-legacy-provider && npm run build:all | |
- name: Build React UI | |
run: | | |
cd ./packages/survey-react-ui | |
npm install | |
export NODE_OPTIONS=--openssl-legacy-provider && npm run build | |
- name: Build Angular UI | |
run: | | |
cd ./packages/survey-angular-ui | |
npm install | |
export NODE_OPTIONS=--openssl-legacy-provider && npm run build | |
- name: Build Vue3 UI | |
run: | | |
cd ./packages/survey-vue3-ui | |
npm install | |
export NODE_OPTIONS=--openssl-legacy-provider && npm run build | |
- name: Build JS UI | |
run: | | |
cd ./packages/survey-js-ui | |
npm install | |
export NODE_OPTIONS=--openssl-legacy-provider && npm run build |