-
-
Notifications
You must be signed in to change notification settings - Fork 158
38 lines (35 loc) · 883 Bytes
/
full_test.yml
File metadata and controls
38 lines (35 loc) · 883 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
name: Full Tests
on:
workflow_dispatch:
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
all_tests:
name: All tests
runs-on: macos-26
timeout-minutes: 15
steps:
- uses: partout-io/action-prepare-xcode-build@master
with:
access-token: ${{ secrets.ACCESS_TOKEN }}
submodules: true
- uses: actions/setup-node@v6
with:
node-version: 20
cache: npm
cache-dependency-path: api/package-lock.json
- name: Run cross tests
run: |
ci/run-cross-tests.sh
- name: Run Apple tests
run: |
ci/run-apple-tests.sh
- name: Run Partout tests
run: |
ci/run-partout-tests.sh
- name: Run API tests
working-directory: ./api
run: |
npm ci
npm test