We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b083840 commit b782d04Copy full SHA for b782d04
.github/workflows/build.yml
@@ -7,6 +7,9 @@ on:
7
jobs:
8
build-ts-examples:
9
runs-on: ubuntu-latest
10
+ strategy:
11
+ matrix:
12
+ type: [console,discordbot]
13
14
steps:
15
- uses: actions/checkout@v3
@@ -18,12 +21,12 @@ jobs:
18
21
19
22
- name: Install dependencies
20
23
run: |
- cd examples/typescript
24
+ cd examples/typescript/${{ matrix.type }}
25
yarn install --frozen-lockfile
26
27
- name: Build
28
29
30
yarn build
31
32
docker-build-environments:
@@ -56,4 +59,4 @@ jobs:
56
59
uses: docker/build-push-action@v2
57
60
with:
58
61
context: ./environments/${{ matrix.environment }}
- push: false
62
+ push: false
0 commit comments