Skip to content

Commit bc7ebd2

Browse files
authored
Merge pull request #160 from Meteor-Community-Packages/release-3.3.0
Release 3.3.0
2 parents d32c982 + 17e0f4d commit bc7ebd2

File tree

19 files changed

+3921
-1388
lines changed

19 files changed

+3921
-1388
lines changed

.github/workflows/tests.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ jobs:
2727
restore-keys: |
2828
${{ runner.os }}-node-20-
2929
30-
- run: npm ci && npm run lint
30+
- run: npm ci && npm run lint && npm run format
3131

3232
test:
3333
name: Meteor package tests
@@ -36,7 +36,7 @@ jobs:
3636
strategy:
3737
matrix:
3838
meteorRelease:
39-
- '3.0'
39+
- '3.2.2'
4040
steps:
4141
- name: Checkout code
4242
uses: actions/checkout@v4
@@ -64,5 +64,5 @@ jobs:
6464
cd tests/dummy_app
6565
npm ci
6666
67-
- name: Run tests
68-
run: ./test.sh
67+
- name: Run puppeteer tests
68+
run: ./test.sh puppeteer

README.md

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,9 @@
11
# Meteor Mocha - meteortesting:mocha
22

3-
3+
[![Project Status: Active – The project has reached a stable, usable state and is being actively developed.](https://www.repostatus.org/badges/latest/active.svg)](https://www.repostatus.org/#active)
4+
[![Test suite](https://github.com/Meteor-Community-Packages/meteor-mocha/actions/workflows/tests.yml/badge.svg)](https://github.com/Meteor-Community-Packages/meteor-mocha/actions/workflows/tests.yml)
5+
[![Formatted with Biome](https://img.shields.io/badge/Formatted_with-Biome-60a5fa?style=flat&logo=biome)](https://biomejs.dev/)
6+
![GitHub License](https://img.shields.io/github/license/Meteor-Community-Packages/meteor-mocha)
47

58
> _Formerly published as dispatch:mocha. Originally created by [Dispatch](http://www.dispatch.me/) but now community maintained._
69

biome.json

Lines changed: 34 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,34 @@
1+
{
2+
"$schema": "https://biomejs.dev/schemas/1.9.4/schema.json",
3+
"vcs": {
4+
"enabled": false,
5+
"clientKind": "git",
6+
"useIgnoreFile": false
7+
},
8+
"files": {
9+
"ignoreUnknown": false,
10+
"ignore": []
11+
},
12+
"formatter": {
13+
"ignore": ["package/browser-shim.js"],
14+
"enabled": true,
15+
"indentStyle": "space"
16+
},
17+
"organizeImports": {
18+
"enabled": true
19+
},
20+
"linter": {
21+
"ignore": ["package/browser-shim.js"],
22+
"enabled": true,
23+
"rules": {
24+
"recommended": true
25+
}
26+
},
27+
"javascript": {
28+
"formatter": {
29+
"quoteStyle": "single",
30+
"semicolons": "always",
31+
"indentWidth": 2
32+
}
33+
}
34+
}

0 commit comments

Comments
 (0)