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 f5ccf44 commit cc552c8Copy full SHA for cc552c8
.github/workflows/test-installers.yml
@@ -0,0 +1,33 @@
1
+name: Test Installers
2
+
3
+on:
4
+ workflow_dispatch:
5
+ inputs:
6
+ bucket_name:
7
+ type: string
8
+ description: 'S3 bucket to download installers from'
9
+ required: true
10
+ bucket_key_prefix:
11
12
+ description: 'S3 bucket key prefix to download installers from'
13
14
+ version:
15
16
+ description: 'Version of the installer to download'
17
18
19
+jobs:
20
+ test:
21
+ name: Dummy action
22
+ runs-on: ubuntu-latest
23
+ steps:
24
+ - name: Checkout
25
+ uses: actions/checkout@v2
26
+ - name: Setup Node.js
27
+ uses: actions/setup-node@v4
28
+ with:
29
+ node-version: 20
30
+ cache: "npm"
31
+ - name: Install dependencies
32
+ run: npm ci
33
0 commit comments