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