-
Notifications
You must be signed in to change notification settings - Fork 29
41 lines (35 loc) · 969 Bytes
/
ci.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
name: CI
on:
workflow_dispatch:
push:
branches:
- '**'
paths-ignore:
- '**.md'
jobs:
Runner:
timeout-minutes: 10
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
os: [ macOS-latest ]
node-version: [ 8, 16 ]
steps:
- name: Checkout Git Source
uses: actions/checkout@v3
- name: Prepare iOS Device
run: |
set -eo pipefail
xcodebuild -workspace Calculator.xcworkspace \
-scheme Calculator\ iOS \
-destination platform=iOS\ Simulator,OS=13.3,name=iPhone\ 11 \
clean test | xcpretty
- name: Setup Node.js
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
- name: Continuous integration
run: |
chmod 755 ./scripts/integration-testing.sh
bash ./scripts/integration-testing.sh