Skip to content

misc(build): replace rollup with esbuild #4519

misc(build): replace rollup with esbuild

misc(build): replace rollup with esbuild #4519

Workflow file for this run

name: package-test
on:
push:
branches: [main]
pull_request: # run on all PRs, not just PRs to a particular branch
env:
PUPPETEER_SKIP_DOWNLOAD: 1
jobs:
package-test:
runs-on: ubuntu-latest
name: Package Test
env:
FORCE_COLOR: true
steps:
- name: git clone
uses: actions/checkout@v2
- name: Use Node.js 16.x
uses: actions/setup-node@v1
with:
node-version: 16.x
- run: yarn install --frozen-lockfile --network-timeout 1000000
- run: yarn build-report
- run: sudo apt-get install xvfb
- run: xvfb-run --auto-servernum bash $GITHUB_WORKSPACE/core/scripts/release/package-test.sh
# Fail if any changes were written to source files.
- run: git diff --exit-code