We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4e46486 commit d1197ddCopy full SHA for d1197dd
.github/workflows/gcp.yml
@@ -28,12 +28,25 @@ jobs:
28
with:
29
java-version: 1.8
30
31
+ - uses: actions/setup-node@v1
32
+ with:
33
+ node-version: '12'
34
+
35
- uses: actions/cache@v2
36
37
path: ~/.m2/repository
38
key: ${{ runner.os }}-maven-${{ hashFiles('**/pom.xml') }}
39
restore-keys: |
40
${{ runner.os }}-maven-
41
42
+ - uses: actions/cache@v2
43
44
+ path: ~/.npm
45
+ key: ${{ runner.os }}-node-${{ hashFiles('**/package-lock.json') }}
46
+ restore-keys: ${{ runner.os }}-node-
47
48
+ - run: npm ci
49
+ - run: npm run build
50
51
- name: Build and Deploy
52
run: mvn -B compile jib:build --file pom.xml
0 commit comments