mirror of
https://github.com/meteorengineer/setup-meteor
synced 2026-09-22 01:09:40 +00:00
No description
- JavaScript 70.7%
- Shell 29.3%
| Filename | Latest commit message | Latest commit date |
|---|---|---|
| .github/workflows | ||
| dist | ||
| src | ||
| .gitignore | ||
| action.yml | ||
| LICENSE | ||
| package-lock.json | ||
| package.json | ||
| README.md | ||
| release.sh | ||
setup-meteor
This action sets up meteor environment for use in actions.
Usage
See action.yml
Basic:
steps:
- uses: actions/checkout@v3
- uses: meteorengineer/setup-meteor@v3
with:
meteor-release: '3.4.0'
- run: meteor npm install
- run: meteor npm test
Matrix Testing:
jobs:
build:
runs-on: ubuntu-24.04
strategy:
matrix:
meteor: [ '3.1.2', '3.4.0 ]
name: Meteor ${{ matrix.meteor }} sample
steps:
- uses: actions/checkout@v1
- name: Setup meteor
uses: meteorengineer/setup-meteor@v3
with:
meteor-release: ${{ matrix.meteor }}
- run: meteor npm install
- run: meteor npm test
License
The scripts and documentation in this project are released under the MIT License