-
Notifications
You must be signed in to change notification settings - Fork 0
143 lines (115 loc) · 3.27 KB
/
build.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
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
name: build
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
lint:
runs-on: ubuntu-latest
steps:
- name: Check out git repository
uses: actions/checkout@v4
- name: Set up Node.js
uses: actions/setup-node@v4
with:
node-version-file: '.tool-versions'
cache: 'npm'
- name: Install Node dependencies
run: npm install
- name: Typecheck TypeScript
run: npm run check-ts
- name: Lint JavaScript
run: npm run lint-js
- name: Check NPM module usage
run: npm run check-modules
tests:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup Node
uses: actions/setup-node@v4
with:
node-version-file: '.tool-versions'
cache: 'npm'
- name: Install dependencies
run: npm install
- name: Run test
run: npm run test
# tests-coverage:
# runs-on: ubuntu-latest
# steps:
# - name: Checkout
# uses: actions/checkout@v4
# with:
# fetch-depth: 0
# - name: Setup Node
# uses: actions/setup-node@v4
# with:
# node-version-file: '.tool-versions'
# cache: 'npm'
# - name: Install dependencies
# run: npm install
# - name: Run test
# run: npm run test-coverage
build:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Setup Node
uses: actions/setup-node@v4
with:
node-version-file: '.tool-versions'
cache: 'npm'
- name: Install dependencies
run: npm install
- name: Run build
run: npm run build
- name: Get shared client version
id: getClientHash
run: |
git checkout main
CLIENT_HASH=`git rev-parse --short main`
if [ -z "$CLIENT_HASH" ]; then
exit 1
fi
echo "client_hash=${CLIENT_HASH}" >> "$GITHUB_ENV"
outputs:
client_hash: ${{ env.client_hash }}
# update-web:
# needs: build
# uses: ./.github/workflows/update-shared.yml
# if: github.event_name != 'pull_request'
# with:
# repo-path: 'techmatters/terraso-web-client'
# repo-ref: 'staging'
# cache-dependency-path: 'package-lock.json'
# client-hash: ${{ needs.build.outputs.client_hash }}
# secrets:
# token: ${{ secrets.TERRASO_CLIENT_TOKEN }}
# update-mobile:
# needs: build
# uses: ./.github/workflows/update-shared.yml
# if: github.event_name != 'pull_request'
# with:
# repo-path: 'techmatters/terraso-mobile-client'
# repo-ref: 'main'
# cache-dependency-path: 'dev-client/package-lock.json'
# working-directory: './dev-client'
# client-hash: ${{ needs.build.outputs.client_hash }}
# secrets:
# token: ${{ secrets.TERRASO_CLIENT_TOKEN }}
# deploy-mobile:
# needs: update-mobile
# runs-on: ubuntu-latest
# env:
# GH_TOKEN: ${{ secrets.TERRASO_CLIENT_TOKEN }}
# steps:
# - name: Run mobile build workflow
# run: gh workflow run build.yml --repo techmatters/terraso-mobile-client build