-
Notifications
You must be signed in to change notification settings - Fork 168
44 lines (35 loc) · 962 Bytes
/
test-react-packages.yml
File metadata and controls
44 lines (35 loc) · 962 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
name: Meteor CI
on:
push:
branches:
- master
pull_request:
jobs:
build:
runs-on: ubuntu-latest
name: Meteor react-packages tests
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Cache Meteor
uses: actions/cache@v4
with:
path: ~/.meteor
key: meteor-cache
- name: Setup Meteor
uses: meteorengineer/setup-meteor@v2
with:
meteor-release: '3.1.2'
- name: Prepare mtest
run: |
meteor npm i -g @zodern/mtest
- name: Install and test in react-meteor-data
working-directory: tests/react-meteor-data-harness
run: |
meteor npm install
meteor npm run test:ci
- name: Install and test in react-meteor-accounts-harness
working-directory: tests/react-meteor-accounts-harness
run: |
meteor npm install
meteor npm run test:ci