Skip to content

Commit 5e24013

Browse files
authored
Merge pull request #4 from o1-labs/dkijania/add_ci
add Ci checks with github actions
2 parents c1c6373 + eb2ea46 commit 5e24013

File tree

7 files changed

+11909
-20512
lines changed

7 files changed

+11909
-20512
lines changed

.drone.yml

Lines changed: 0 additions & 201 deletions
This file was deleted.
Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
name: Build
2+
3+
on:
4+
push:
5+
branches:
6+
- main
7+
- dkijania/**
8+
pull_request:
9+
branches:
10+
- main
11+
workflow_dispatch:
12+
13+
jobs:
14+
build:
15+
runs-on: ubuntu-latest
16+
17+
steps:
18+
- name: Checkout code
19+
uses: actions/checkout@v4
20+
21+
- name: Set up Docker Buildx
22+
uses: docker/setup-buildx-action@v3
23+
24+
- name: Build Docker image
25+
run: |
26+
docker build --no-cache -t directcuteo/mina-frontend:latest -f Dockerfile .

angular.json

Lines changed: 18 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -74,8 +74,8 @@
7474
},
7575
{
7676
"type": "anyComponentStyle",
77-
"maximumWarning": "4kb",
78-
"maximumError": "8kb"
77+
"maximumWarning": "8kb",
78+
"maximumError": "16kb"
7979
}
8080
],
8181
"fileReplacements": [
@@ -95,8 +95,8 @@
9595
},
9696
{
9797
"type": "anyComponentStyle",
98-
"maximumWarning": "4kb",
99-
"maximumError": "8kb"
98+
"maximumWarning": "8kb",
99+
"maximumError": "16kb"
100100
}
101101
],
102102
"fileReplacements": [
@@ -116,8 +116,8 @@
116116
},
117117
{
118118
"type": "anyComponentStyle",
119-
"maximumWarning": "4kb",
120-
"maximumError": "8kb"
119+
"maximumWarning": "8kb",
120+
"maximumError": "16kb"
121121
}
122122
],
123123
"fileReplacements": [
@@ -137,8 +137,8 @@
137137
},
138138
{
139139
"type": "anyComponentStyle",
140-
"maximumWarning": "4kb",
141-
"maximumError": "8kb"
140+
"maximumWarning": "8kb",
141+
"maximumError": "16kb"
142142
}
143143
],
144144
"fileReplacements": [
@@ -158,8 +158,8 @@
158158
},
159159
{
160160
"type": "anyComponentStyle",
161-
"maximumWarning": "4kb",
162-
"maximumError": "8kb"
161+
"maximumWarning": "8kb",
162+
"maximumError": "16kb"
163163
}
164164
],
165165
"fileReplacements": [
@@ -179,8 +179,8 @@
179179
},
180180
{
181181
"type": "anyComponentStyle",
182-
"maximumWarning": "4kb",
183-
"maximumError": "8kb"
182+
"maximumWarning": "8kb",
183+
"maximumError": "16kb"
184184
}
185185
],
186186
"fileReplacements": [
@@ -200,8 +200,8 @@
200200
},
201201
{
202202
"type": "anyComponentStyle",
203-
"maximumWarning": "4kb",
204-
"maximumError": "8kb"
203+
"maximumWarning": "8kb",
204+
"maximumError": "16kb"
205205
}
206206
],
207207
"fileReplacements": [
@@ -221,8 +221,8 @@
221221
},
222222
{
223223
"type": "anyComponentStyle",
224-
"maximumWarning": "4kb",
225-
"maximumError": "8kb"
224+
"maximumWarning": "8kb",
225+
"maximumError": "16kb"
226226
}
227227
],
228228
"fileReplacements": [
@@ -242,8 +242,8 @@
242242
},
243243
{
244244
"type": "anyComponentStyle",
245-
"maximumWarning": "4kb",
246-
"maximumError": "8kb"
245+
"maximumWarning": "8kb",
246+
"maximumError": "16kb"
247247
}
248248
],
249249
"fileReplacements": [

0 commit comments

Comments
 (0)