All Projects â†’ meteorengineer â†’ setup-meteor

meteorengineer / setup-meteor

Licence: MIT license
Set up your GitHub Actions workflow with a specific version of Meteor.js

Programming Languages

javascript
184084 projects - #8 most used programming language

Projects that are alternatives of or similar to setup-meteor

meteor-search
🔍 SPIKE of full-text search in MongoDB using Meteor
Stars: ✭ 40 (+135.29%)
Mutual labels:  meteor, meteorjs
Meteor-Template-helpers
Template helpers for Session, logical operations and debug
Stars: ✭ 35 (+105.88%)
Mutual labels:  meteor, meteorjs
Meteor-logger-mongo
🍃 Meteor Logging: Store application log messages in MongoDB
Stars: ✭ 20 (+17.65%)
Mutual labels:  meteor, meteorjs
MeteorCandy-meteor-admin-dashboard-devtool
The Fast, Secure and Scalable Admin Panel / Dashboard for Meteor.js
Stars: ✭ 50 (+194.12%)
Mutual labels:  meteor, meteorjs
Meteor-logger
🧾 Meteor isomorphic logger. Store application logs in File (FS), MongoDB, or print in Console
Stars: ✭ 51 (+200%)
Mutual labels:  meteor, meteorjs
meteor-blaze-bs4
Generic Bootstrap 4 components library for Meteor Blaze.
Stars: ✭ 20 (+17.65%)
Mutual labels:  meteor, meteorjs
Meteor-flow-router-title
Change document.title on the fly within flow-router
Stars: ✭ 23 (+35.29%)
Mutual labels:  meteor, meteorjs
Meteor-logger-file
🔖 Meteor Logging: Store application log messages into file (FS)
Stars: ✭ 24 (+41.18%)
Mutual labels:  meteor, meteorjs
fragments
Organise your bookmarks into boards
Stars: ✭ 56 (+229.41%)
Mutual labels:  meteor, meteorjs
meteor-react-native
Meteor client for React Native matching Meteor Spec
Stars: ✭ 43 (+152.94%)
Mutual labels:  meteor, meteorjs
meteorman
A DDP client with GUI (The Postman for Meteor)
Stars: ✭ 51 (+200%)
Mutual labels:  meteor, meteorjs
awesome-blaze
🔥A curated list of awesome things related to Blaze
Stars: ✭ 29 (+70.59%)
Mutual labels:  meteor, meteorjs
hypersubs
an upgraded version of Meteor subscribe, which helps optimize data and performance!
Stars: ✭ 13 (-23.53%)
Mutual labels:  meteor, meteorjs
flow-router
🚦 Carefully extended flow-router for Meteor
Stars: ✭ 191 (+1023.53%)
Mutual labels:  meteor, meteorjs
svelte-meteor-data
Reactively track Meteor data inside Svelte components
Stars: ✭ 14 (-17.65%)
Mutual labels:  meteor, meteorjs
Nosqlclient
Cross-platform and self hosted, easy to use, intuitive mongodb management tool - Formerly Mongoclient
Stars: ✭ 3,399 (+19894.12%)
Mutual labels:  meteor, meteorjs
meteor-elastic-apm
Meteor Elastic APM integration
Stars: ✭ 56 (+229.41%)
Mutual labels:  meteor
meteor-reactive-aggregate
Reactively publish aggregations with Meteor.
Stars: ✭ 100 (+488.24%)
Mutual labels:  meteor
action-my-broken-link-checker
A GitHub Action for checking broken links
Stars: ✭ 32 (+88.24%)
Mutual labels:  actions
k6-action
k6 is now available as a GitHub Action
Stars: ✭ 64 (+276.47%)
Mutual labels:  actions

setup-meteor

This action sets up meteor environment for use in actions.

Usage

See action.yml

Basic:

steps:
- uses: actions/checkout@v1
- uses: meteorengineer/setup-meteor@v1
  with:
    meteor-release: '1.8.1'
- run: meteor npm install
- run: meteor npm test

Matrix Testing:

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@v1
        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

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].