🧪 Test: Always assign programs and isopack paths within analyzer config. #1731
Workflow file for this run
This file contains hidden or 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@v4 | |
| - 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 | |