Skip to content

Commit 95a1371

Browse files
committed
syntax
1 parent 9c714ae commit 95a1371

File tree

1 file changed

+13
-13
lines changed

1 file changed

+13
-13
lines changed

.github/workflows/develop.yaml

+13-13
Original file line numberDiff line numberDiff line change
@@ -1,21 +1,21 @@
1-
name: 'Build / Test / Deploy'
1+
name: Build / Test / Deploy
22
on:
33
push:
44
branches:
5-
- '"main"'
5+
- main
66
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
1010

1111
jobs:
1212
Build:
13-
runs-on: 'ubuntu-latest'
13+
runs-on: ubuntu-latest
1414
steps:
15-
- name: 'Checkout'
16-
uses: 'actions/checkout@v4'
17-
- name: Lint & Build
18-
uses: actions/[email protected]
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+
uses: actions/[email protected]
19+
- name: Lint & Build
20+
working-directory: ./app
21+
run: npm ci && npm run lint && npm run build

0 commit comments

Comments
 (0)