diff --git a/.github/workflows/bundlers.yml b/.github/workflows/bundlers.yml index 083c44d2f..7e9a4bdea 100644 --- a/.github/workflows/bundlers.yml +++ b/.github/workflows/bundlers.yml @@ -85,6 +85,7 @@ jobs: npm i --save-dev @rollup/plugin-commonjs @rollup/plugin-node-resolve rollup@${{matrix.bundler-version}} + - run: npx rollup --version - name: Create Rollup config file run: >- echo ' @@ -120,6 +121,7 @@ jobs: run: tar -xzf /tmp/packages/uppy-${{ github.sha }}.tgz --strip-components 1 - name: Add Webpack as a dev dependency run: npm i --save-dev webpack-cli webpack@${{matrix.bundler-version}} + - run: npx webpack --version - name: Create Webpack config file run: echo 'module.exports={mode:"production",target:"web",entry:"./index.mjs"}' > webpack.config.js - name: Bundle @@ -150,6 +152,7 @@ jobs: EOF - name: Add Parcel as a dev dependency run: npm i --save-dev parcel@${{matrix.bundler-version}} + - run: npx parcel --version - name: Bundle run: npx parcel build index.mjs @@ -169,6 +172,7 @@ jobs: run: tar -xzf /tmp/packages/uppy-${{ github.sha }}.tgz --strip-components 1 - name: Add Vite as a dev dependency run: npm i --save-dev vite@${{matrix.bundler-version}} + - run: npx vite --version - name: Create index.html run: echo '
' > index.html - name: Bundle @@ -190,6 +194,7 @@ jobs: run: tar -xzf /tmp/packages/uppy-${{ github.sha }}.tgz --strip-components 1 - name: Add ESBuild as a dev dependency run: npm i --save-dev esbuild@${{matrix.bundler-version}} + - run: npx esbuild --version - name: Bundle run: npx esbuild index.mjs --bundle --outfile=/dev/null