Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat: Switch to esbuild and ESM first packaging (comms) #4248

Merged
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
20 changes: 14 additions & 6 deletions .github/workflows/testPullRequest.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,15 +25,23 @@ jobs:
- run: npm ci
- run: npm run lint-all
- run: npm run build
- run: npm run compile-umd
- run: npm run build-gallery
- run: npm run build-test
# - run: npm run compile-umd
# - run: npm run build-gallery
# - run: npm run build-test
- run: sudo apt-get update
- run: wget https://github.com/hpcc-systems/HPCC-Platform/releases/download/community_9.4.34-1/hpccsystems-platform-community_9.4.34-1jammy_amd64_withsymbols.deb
- run: sudo npx -y playwright install chromium --with-deps
- run: npx -y playwright install chromium
- run: wget https://github.com/hpcc-systems/HPCC-Platform/releases/download/community_9.6.50-1/hpccsystems-platform-community_9.6.50-1jammy_amd64_withsymbols.deb
- name: Install HPCC Platform
continue-on-error: true
run: sudo apt install -f ./hpccsystems-platform-community_9.4.34-1jammy_amd64_withsymbols.deb
run: sudo apt install -f ./hpccsystems-platform-community_9.6.50-1jammy_amd64_withsymbols.deb
- run: sudo /etc/init.d/hpcc-init start
- run: npm run test
- run: npm run test-local
env:
CI: true
- name: Upload error logs
if: ${{ failure() || cancelled() }}
uses: actions/upload-artifact@v4
with:
name: windows-2022-logs
path: ./ECLIDE/build/**/*.log
Loading
Loading