Skip to content

Published freedombase:[email protected]

Published freedombase:[email protected] #32

Workflow file for this run

name: Tests
on:
push:
branches:
- master
- develop
pull_request:
jobs:
tests:
name: Unit tests
runs-on: ubuntu-latest
strategy:
matrix:
meteor: [ '2.5.1' ]
steps:
- name: checkout
uses: actions/checkout@v2
- name: Setup Meteor
uses: meteorengineer/setup-meteor@v1
with:
meteor-release: ${{ matrix.meteor }}
- name: cache dependencies
uses: actions/cache@v1
with:
path: ~/.npm
key: ${{ runner.os }}-node-${{ hashFiles('**/package-lock.json') }}
restore-keys: |
${{ runner.os }}-node-
- run: cd tests && meteor npm install && meteor npm run test