[chore] Remove underscore package (#194) #45
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Test | |
on: [push, pull_request] | |
env: | |
METEOR_VERSION: 3.0-rc.4 | |
jobs: | |
test: | |
runs-on: ubuntu-latest | |
name: Test | |
steps: | |
- name: Clone repository | |
uses: actions/checkout@v4 | |
- name: Clone meteor-synced-cron | |
uses: actions/checkout@v4 | |
with: | |
repository: sebastianspiller/meteor-synced-cron | |
path: app/packages/meteor-synced-cron | |
ref: update-to-async | |
- name: Setup Node.js | |
uses: actions/setup-node@v4 | |
with: | |
node-version: 20 | |
- name: Install meteor | |
run: | | |
curl https://install.meteor.com/?release=$METEOR_VERSION | sh | |
- name: Test | |
run: | | |
cd app/ | |
meteor npm i | |
npm test |