Skip to content

Commit cc552c8

Browse files
committed
Add dummy workflow
1 parent f5ccf44 commit cc552c8

File tree

1 file changed

+33
-0
lines changed

1 file changed

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

Comments
 (0)