-
Notifications
You must be signed in to change notification settings - Fork 9
72 lines (63 loc) · 2.03 KB
/
test.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
name: Build and test
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
jobs:
build-jvm:
# prevent from running on forks
if: github.repository_owner == 'restatedev'
runs-on: ubuntu-latest
strategy:
matrix:
jvm-version: [ 17 ]
steps:
- uses: actions/checkout@v3
- name: Use JVM ${{ matrix.jvm-version }}
uses: actions/setup-java@v3
with:
distribution: 'temurin'
java-version: ${{ matrix.jvm-version }}
# When adding a new example make sure it's listed here
- name: Test java/hello-world-http
uses: gradle/gradle-build-action@v2
with:
arguments: check
build-root-directory: java/hello-world-http
- name: Test java/hello-world-lambda
uses: gradle/gradle-build-action@v2
with:
arguments: check
build-root-directory: java/hello-world-lambda
- name: Test kotlin/hello-world-http
uses: gradle/gradle-build-action@v2
with:
arguments: check
build-root-directory: kotlin/hello-world-http
- name: Test kotlin/hello-world-lambda
uses: gradle/gradle-build-action@v2
with:
arguments: check
build-root-directory: kotlin/hello-world-lambda
- name: Test kotlin/hello-world-lambda-cdk
run: |
npm --prefix kotlin/hello-world-lambda-cdk clean-install
npm --prefix kotlin/hello-world-lambda-cdk run verify
build-ts:
# prevent from running on forks
if: github.repository_owner == 'restatedev'
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [19.x]
steps:
- uses: actions/checkout@v3
- uses: bufbuild/buf-setup-action@v1
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
registry-url: 'https://registry.npmjs.org'
- run: npm ci --prefix typescript
- run: npm run --prefix typescript -ws verify