forked from wojtkowiak/meteor-desktop
-
-
Notifications
You must be signed in to change notification settings - Fork 12
80 lines (76 loc) · 2.27 KB
/
test.yml
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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
on:
pull_request:
push:
branches:
- master
env:
METEOR_VERSION: 2.6.1
jobs:
build:
name: Build and Install
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Get Cache dependencies
uses: actions/cache@v3
id: files-cache
with:
path: |
dist
node_modules
/tmp/.__tmp_int
~/.meteor
~/.npm
key: ${{ runner.os }}-node-${{ hashFiles('package-lock.json') }}
- name: Install/Retrieve Meteor
if: steps.files-cache.outputs.cache-hit != 'true'
run: curl https://install.meteor.com/?release=${{ env.METEOR_VERSION }} | /bin/sh
- name: Install NPM Dependencies
# Creates dist/ through postinstall->build script
if: steps.files-cache.outputs.cache-hit != 'true'
run: ~/.meteor/meteor npm ci
- name: Run build script
# Make sure dist/ is up-to-date when package-lock.json hasn't changed
if: steps.files-cache.outputs.cache-hit == 'true'
run: ~/.meteor/meteor npm run build
unit-tests:
needs: build
name: Unit Tests
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Get Cache dependencies
uses: actions/cache@v3
id: files-cache
with:
path: |
dist
node_modules
/tmp/.__tmp_int
~/.meteor
~/.npm
key: ${{ runner.os }}-node-${{ hashFiles('package-lock.json') }}
- name: Run test script
run: ~/.meteor/meteor npm run test
integration-tests:
needs: build
name: Integration Tests
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Get Cache dependencies
uses: actions/cache@v3
id: files-cache
with:
path: |
dist
node_modules
/tmp/.__tmp_int
~/.meteor
~/.npm
key: ${{ runner.os }}-node-${{ hashFiles('package-lock.json') }}
- run: ~/.meteor/meteor npm run prepare-integration-tests
- name: Run test-integration script (using Xvfb)
uses: coactions/setup-xvfb@v1
with: # needs full path to meteor
run: /home/runner/.meteor/meteor npm run test-integration