https://github.com/meteorengineer/setup-meteor
Set up your GitHub Actions workflow with a specific version of Meteor.js
https://github.com/meteorengineer/setup-meteor
actions meteor meteorjs
Last synced: 4 months ago
JSON representation
Set up your GitHub Actions workflow with a specific version of Meteor.js
- Host: GitHub
- URL: https://github.com/meteorengineer/setup-meteor
- Owner: meteorengineer
- License: mit
- Created: 2019-11-16T16:01:02.000Z (over 6 years ago)
- Default Branch: master
- Last Pushed: 2025-08-08T08:08:50.000Z (11 months ago)
- Last Synced: 2025-10-11T16:18:58.918Z (8 months ago)
- Topics: actions, meteor, meteorjs
- Language: JavaScript
- Homepage:
- Size: 409 KB
- Stars: 19
- Watchers: 1
- Forks: 9
- Open Issues: 8
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# setup-meteor
This action sets up meteor environment for use in actions.
# Usage
See [action.yml](action.yml)
Basic:
```yaml
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:
```yaml
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](LICENSE)