-
-
Notifications
You must be signed in to change notification settings - Fork 156
97 lines (88 loc) · 2.64 KB
/
test.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
name: Run CI
on:
push:
branches: [ "main" ]
paths-ignore:
- '**.md'
- '.vscode/*'
pull_request:
paths-ignore:
- '**.md'
- '.vscode/*'
jobs:
build:
runs-on: ubuntu-latest
permissions:
pull-requests: write # this allows to show table and charts in PRs
steps:
- name: Initialize Energy Estimation
uses: green-coding-solutions/eco-ci-energy-estimation@v3
with:
task: start-measurement
continue-on-error: true
- uses: actions/checkout@v3
- name: Measure Checkout
uses: green-coding-solutions/eco-ci-energy-estimation@v3
with:
task: get-measurement
label: 'checkout repository'
continue-on-error: true
- uses: actions/setup-node@v3
with:
node-version: 16
- name: Measure setup node
uses: green-coding-solutions/eco-ci-energy-estimation@v3
with:
task: get-measurement
label: 'setup node'
continue-on-error: true
- run: yarn install
- name: Measure yarn Install
uses: green-coding-solutions/eco-ci-energy-estimation@v3
with:
task: get-measurement
label: 'yarn install'
continue-on-error: true
- uses: borales/[email protected]
with:
cmd: ci
- name: Measure yarn CI
uses: green-coding-solutions/eco-ci-energy-estimation@v3
with:
task: get-measurement
label: 'yarn ci'
continue-on-error: true
- name: Display results
uses: green-coding-solutions/eco-ci-energy-estimation@v3
with:
task: display-results
pr-comment: true # will put a nice graphical table view in the PR comment
show-carbon: true # will show the carbon values additional to energy
send-data: true # set this to false if you do not want to use historical data view on https://metrics.green-coding.io/ci-index.html
continue-on-error: true
# publish.yml
# name: Expo Publish
# on:
# push:
# tags:
# - "v*"
# jobs:
# publish:
# runs-on: ubuntu-latest
# steps:
# - name: 🏗 Setup repo
# uses: actions/checkout@v2
# - name: 🏗 Setup Node
# uses: actions/setup-node@v2
# with:
# node-version: 16.x
# cache: yarn
# - name: 🏗 Setup Expo
# uses: expo/expo-github-action@v7
# with:
# expo-version: latest
# token: ${{ secrets.EXPO_TOKEN }}
# - name: 📦 Install dependencies
# run: yarn install
# - name: 🚀 Publish app
# run: expo publish --non-interactive