File tree 1 file changed +13
-13
lines changed
1 file changed +13
-13
lines changed Original file line number Diff line number Diff line change 1
- name : ' Build / Test / Deploy'
1
+ name : Build / Test / Deploy
2
2
on :
3
3
push :
4
4
branches :
5
- - ' " main" '
5
+ - main
6
6
env :
7
- PROJECT_ID : ' my-project' # TODO: update to your Google Cloud project ID
8
- REGION : ' us-central1' # TODO: update to your region
9
- SERVICE : ' my-service' # TODO: update to your service name
7
+ PROJECT_ID : my-project # TODO: update to your Google Cloud project ID
8
+ REGION : us-central1 # TODO: update to your region
9
+ SERVICE : my-service # TODO: update to your service name
10
10
11
11
jobs :
12
12
Build :
13
- runs-on : ' ubuntu-latest'
13
+ runs-on : ubuntu-latest
14
14
steps :
15
- - name : ' Checkout'
16
- uses : ' actions/checkout@v4'
17
- - name : Lint & Build
18
-
19
- working-directory : ./app
20
- run : npm ci && npm run lint && npm run build
21
-
15
+ - name : Checkout
16
+ uses : actions/checkout@v4
17
+ - name : Set up Node.js
18
+
19
+ - name : Lint & Build
20
+ working-directory : ./app
21
+ run : npm ci && npm run lint && npm run build
You can’t perform that action at this time.
0 commit comments