🧪 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
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: '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 | |