-
Notifications
You must be signed in to change notification settings - Fork 12
105 lines (85 loc) · 3.06 KB
/
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
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
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
name: CI
on:
workflow_dispatch:
push:
branches:
- master
- develop
- "run-ci/**"
pull_request:
branches: [master, develop, test-pr]
types: [opened, synchronize, reopened, labeled]
concurrency:
group: ${{ github.workflow }}-${{ github.head_ref || github.run_id }}
cancel-in-progress: true
env:
NODE_ENV: test
jobs:
mangrove-js:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Yarn setup (caching yarn dependencies)
uses: actions/setup-node@v4
with:
node-version: 18.x
cache: "yarn"
- name: Foundry Setup
uses: mangrovedao/.github/.github/actions/foundry-setup@master
- run: yarn install --immutable
- name: Build
id: build
run: yarn run build
env:
NODE_OPTIONS: "--max_old_space_size=8192"
# == run and upload test result (reporter run in separate workflow) ==
- name: Test
env:
FOUNDRY_CACHE_PATH: "~/.foundry/build-cache"
FOUNDRY_OUT: "~/.foundry/build-out"
run: yarn run test:coverage
- uses: actions/upload-artifact@v4
if: ${{ steps.build.conclusion == 'success' && (success() || failure())}}
with:
name: test-results
path: ./coverage-tests-report.json
# == verify cli can start ==
- name: Mgv cli Tests
run: yarn mgv help
# == verify docs can be generated ==
- name: Generate Docs
run: yarn doc
# == Send coverage report to Coveralls ==
# Coverallsapp by default uses GITHUB_SHA but that does not necessarily correspond
# to HEAD because a branch is checked out. We here find the actual SHA for HEAD.
- name: Set Coveralls vars
id: coveralls_vars
if: github.event_name != 'pull_request'
run: echo "::set-output name=sha_for_head::$(git rev-parse HEAD)"
- name: Upload to Coveralls for mangrove.js
uses: coverallsapp/github-action@master
if: github.event_name != 'pull_request'
with:
git-commit: ${{ steps.coveralls_vars.outputs.sha_for_head }}
github-token: ${{ secrets.GITHUB_TOKEN }}
path-to-lcov: ./coverage/lcov.info
base-path: .
flag-name: js
# ==== final "check" job, using alls-green to have one single job to check for green workflow ====
# see https://github.com/re-actors/alls-green
check:
# NB: We're experimenting with using `!cancelled()` instead of `always()` in an attempt to avoid
# cancelled workflow runs blocking dependabot PR's from merging.
# Workflow runs are often cancelled automatically when a newer run is triggered.
# The problem appears to be that the `check` job runs and fails if the workflow is cancelled.
# if: always()
if: ${{ !cancelled() }}
needs:
- mangrove-js
runs-on: ubuntu-latest
steps:
- name: Decide whether the needed jobs succeeded or failed
uses: re-actors/alls-green@release/v1
with:
jobs: ${{ toJSON(needs) }}