Skip to content

Commit 27ae89c

Browse files
authored
Merge pull request #123 from jankapunkt/ci/tests
Add CI for better test integration when pull requests are to be merged
2 parents bd33667 + 63c662f commit 27ae89c

File tree

4 files changed

+1051
-5
lines changed

4 files changed

+1051
-5
lines changed

.github/workflows/test_suite.yml

+44
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,44 @@
1+
name: Test suite
2+
3+
# run ci on direct pushes to master
4+
# or on any pull request update
5+
on:
6+
push:
7+
branches:
8+
- master
9+
pull_request:
10+
11+
jobs:
12+
tests:
13+
name: Meteor package tests
14+
runs-on: ubuntu-latest
15+
steps:
16+
- name: Checkout
17+
uses: actions/checkout@v4
18+
19+
- name: setup node
20+
uses: actions/setup-node@v4
21+
with:
22+
node-version: 20
23+
24+
- name: cache dependencies
25+
uses: actions/cache@v3
26+
with:
27+
path: ~/.npm
28+
key: ${{ runner.os }}-node-20-${{ hashFiles('**/package-lock.json') }}
29+
restore-keys: |
30+
${{ runner.os }}-node-20-
31+
32+
# we use mtest to run tinytest headless
33+
- run: npm install -g mtest
34+
35+
- name: Setup meteor
36+
uses: meteorengineer/setup-meteor@v1
37+
with:
38+
meteor-release: '3.1.0'
39+
40+
- run: |
41+
meteor npm install
42+
meteor npm run test:once
43+
44+

.npm/package/npm-shrinkwrap.json

+3-3
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)