-
Notifications
You must be signed in to change notification settings - Fork 0
79 lines (66 loc) · 2.24 KB
/
main.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
name: Test Execute Action
on:
pull_request:
branches: [ main ]
permissions:
contents: read
jobs:
test-execute-action:
runs-on: ubuntu-latest
name: Execute Action Test
steps:
- name: Checkout
uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: 20
- name: Corepack enable
shell: bash
run: corepack enable
- name: Get pnpm store directory
id: pnpm-cache
shell: bash
run: |
echo "STORE_PATH=$(pnpm store path)" >> $GITHUB_OUTPUT
- uses: actions/cache@v4
name: Setup pnpm cache
with:
path: ${{ steps.pnpm-cache.outputs.STORE_PATH }}
key: ${{ runner.os }}-pnpm-store-cache-${{ hashFiles('**/pnpm-lock.yaml') }}
restore-keys: |
${{ runner.os }}-pnpm-store-cache-
- name: install dependencies
run: pnpm install
- name: package
run: pnpm run build
- name: Execute Automagically non-blocking
id: automagically-non-blocking
uses: ./
with:
url: 'https://storage.googleapis.com/mocktopus/index.html'
testTargetId: '35c8bfca-48d2-4eb2-8042-4ee50707a295'
token: ${{ secrets.AUTOMAGICALLY_TOKEN }}
- name: Execute Automagically non-blocking non-default
id: automagically-non-blocking-non-default
uses: ./
with:
url: 'https://storage.googleapis.com/mocktopus/index.html'
testTargetId: '35c8bfca-48d2-4eb2-8042-4ee50707a295'
token: ${{ secrets.AUTOMAGICALLY_TOKEN }}
blocking: false
- name: Execute Automagically blocking
id: automagically-blocking
uses: ./
with:
url: 'https://storage.googleapis.com/mocktopus/index.html'
testTargetId: '35c8bfca-48d2-4eb2-8042-4ee50707a295'
token: ${{ secrets.AUTOMAGICALLY_TOKEN }}
blocking: true
- name: Execute Automagically with environment
id: automagically
uses: ./
with:
url: 'https://storage.googleapis.com/mocktopus/index.html'
testTargetId: '35c8bfca-48d2-4eb2-8042-4ee50707a295'
token: ${{ secrets.AUTOMAGICALLY_TOKEN }}
environmentName: "test"