Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 6 additions & 5 deletions .github/workflows/testsuite.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,15 +14,14 @@ jobs:
tests:
name: tests
runs-on: ubuntu-latest
# needs: [lintcode,lintstyle,lintdocs] # we could add prior jobs for linting, if desired
steps:
- name: checkout
uses: actions/checkout@v4

- name: Setup meteor
uses: meteorengineer/setup-meteor@v1
with:
meteor-release: '3.1'
meteor-release: '3.4'

- name: cache dependencies
uses: actions/cache@v4
Expand All @@ -32,6 +31,8 @@ jobs:
restore-keys: |
${{ runner.os }}-node-

- run: cd testapp && meteor npm ci
- run: cd testapp && meteor npm run lint
- run: cd testapp && meteor npm run test
- run: |
cd testapp
meteor npm ci
meteor npm run lint
meteor npm run test
7 changes: 0 additions & 7 deletions .prettierignore

This file was deleted.

1 change: 0 additions & 1 deletion .prettierrc.json

This file was deleted.

9 changes: 9 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@
<!-- DON'T EDIT THIS SECTION, INSTEAD RE-RUN doctoc TO UPDATE -->
**Table of Contents** *generated with [DocToc](https://github.com/thlorenz/doctoc)*

- [8.1.0](#810)
- [8.0.0](#800)
- [7.0.0](#700)
- [6.3.0](#630)
Expand Down Expand Up @@ -111,6 +112,14 @@

<!-- END doctoc generated TOC please keep comment here to allow auto update -->

### 8.1.0
- compatibility release for Meteor 3.4
- fully dropping some remaining compat versions for Meteor 2.x in package.js
- updated testapp to Meteor 3.4
- update testapp dependencies
- add 3.4 compat for package.js deps
- update ci to use Meteor 3.4 and latest actions

### 8.0.0

- Package/dependencies: make this package work for Meteor 3.0
Expand Down
Loading
Loading