Skip to content

🧪 Test: Remove readme section about minifier packages. They are still necessary to bundle Meteor individual packages into a single browser-friendly module. Without the minifier packages, browsers will have to pull in non-minified sources for all installed Meteor packages, which can result in a lot of unnecessary requests. #1180

🧪 Test: Remove readme section about minifier packages. They are still necessary to bundle Meteor individual packages into a single browser-friendly module. Without the minifier packages, browsers will have to pull in non-minified sources for all installed Meteor packages, which can result in a lot of unnecessary requests.

🧪 Test: Remove readme section about minifier packages. They are still necessary to bundle Meteor individual packages into a single browser-friendly module. Without the minifier packages, browsers will have to pull in non-minified sources for all installed Meteor packages, which can result in a lot of unnecessary requests. #1180

Workflow file for this run

name: 'Test'
run-name: '🧪 Test: ${{ github.event.head_commit.message }}'
on:
push:
env:
NPM_PACKAGE_PATH: ./npm-packages/meteor-vite
jobs:
meteor-vite:
name: 'npm package: meteor-vite'
runs-on: ubuntu-latest
steps:
- name: 'Checkout'
uses: actions/checkout@v3
- name: 'Setup Node'
uses: actions/setup-node@v3
- name: 'Install dependencies'
run: cd "$NPM_PACKAGE_PATH" && npm i
- name: 'Run tests'
run: cd "$NPM_PACKAGE_PATH" && npm test