Skip to content

[WIP] Update/meteor v3.0 #91

[WIP] Update/meteor v3.0

[WIP] Update/meteor v3.0 #91

Workflow file for this run

name: Tests
on: [push, pull_request]
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
meteor: [3.0.1]
steps:
- uses: actions/checkout@v4
- name: Install Dependencies
run: |
curl https://install.meteor.com | /bin/sh
- name: Setup tests
run: |
meteor create --release ${{ matrix.meteor }} --bare test
cd test
meteor npm i --save puppeteer chai
mkdir packages
cd packages
git clone -b update/meteor-3.0 https://github.com/bhunjadi/denormalize.git
- name: Test
working-directory: ./test
run: METEOR_PACKAGE_DIRS="../" TEST_BROWSER_DRIVER=puppeteer meteor test-packages --once --driver-package meteortesting:mocha ../