-
Notifications
You must be signed in to change notification settings - Fork 2
65 lines (54 loc) · 1.55 KB
/
test-meticulous-in-cloud.yaml
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
# Workflow for automated Meticulous tests in Meticulous' cloud.
name: Tests - react-bmi-calculator (in cloud)
on:
push:
branches:
- main
- releases/*
pull_request: {}
workflow_dispatch: {}
permissions:
actions: write
contents: read
statuses: write
pull-requests: write
packages: read
jobs:
test:
name: Report diffs (in cloud)
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v3
- name: Use Node.js LTS
id: nodejs
uses: actions/setup-node@v3
with:
node-version: "20"
cache: yarn
- name: Cache node_modules
uses: actions/cache@v3
with:
path: |
node_modules
tests/react-bmi-calculator/node_modules
key: node-modules-${{ runner.os }}-${{ hashFiles('**/yarn.lock') }}
restore-keys: |
node-modules-${{ runner.os }}
- name: Install react-bmi-calculator dependencies
working-directory: ./tests/react-bmi-calculator
run: yarn install --frozen-lockfile --non-interactive
- name: Build react-bmi-calculator
working-directory: ./tests/react-bmi-calculator
run: yarn build
- name: Serve react-bmi-calculator
working-directory: ./tests/react-bmi-calculator
run: |
yarn serve &
sleep 4
- name: Run report-diffs-action
id: test
uses: ./in-cloud
with:
api-token: "${{ secrets.METICULOUS_API_TOKEN }}"
app-url: http://localhost:3000