Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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: about 1 month 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 (almost 5 years ago)
- Default Branch: master
- Last Pushed: 2024-10-04T12:22:27.000Z (about 1 month ago)
- Last Synced: 2024-10-06T19:06:49.321Z (about 1 month ago)
- Topics: actions, meteor, meteorjs
- Language: JavaScript
- Homepage:
- Size: 388 KB
- Stars: 19
- Watchers: 2
- Forks: 9
- Open Issues: 3
-
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@v2
- uses: meteorengineer/setup-meteor@v2
with:
meteor-release: '1.8.1'
- run: meteor npm install
- run: meteor npm test
```Matrix Testing:
```yaml
jobs:
build:
runs-on: ubuntu-16.04
strategy:
matrix:
meteor: [ '1.8.1', '1.9-beta.3' ]
name: Meteor ${{ matrix.meteor }} sample
steps:
- uses: actions/checkout@v1
- name: Setup meteor
uses: meteorengineer/setup-meteor@v2
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)