Skip to content

Commit 88c7bfe

Browse files
authored
chore(ci): add workflow to test installers on GHA (#6674)
Add dummy workflow
1 parent fb4c7f0 commit 88c7bfe

File tree

1 file changed

+36
-0
lines changed

1 file changed

+36
-0
lines changed

.github/workflows/test-installers.yml

Lines changed: 36 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -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+
type: string
15+
description: 'S3 bucket key prefix to download installers from'
16+
required: true
17+
version:
18+
type: string
19+
description: 'Version of the installer to download'
20+
required: true
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

Comments
 (0)