No description
  • JavaScript 70.7%
  • Shell 29.3%
Find a file
Repository files (latest commit first)
Filename Latest commit message Latest commit date
Michał Powaga 5c24ea96e0
3.0.1
2026-02-26 21:27:50 +00:00
.github/workflows Big update 2026-02-26 21:21:38 +00:00
dist npm run build 2026-02-26 21:27:49 +00:00
src Fix @actions/core import 2026-02-26 21:25:44 +00:00
.gitignore Initial commit 2019-11-16 22:26:40 +00:00
action.yml Big update 2026-02-26 21:21:38 +00:00
LICENSE Initial commit 2019-11-16 22:26:40 +00:00
package-lock.json 3.0.1 2026-02-26 21:27:50 +00:00
package.json 3.0.1 2026-02-26 21:27:50 +00:00
README.md Big update 2026-02-26 21:21:38 +00:00
release.sh Big update 2026-02-26 21:21:38 +00:00

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