Skip to content

Commit

Permalink
test: Dummy draft workflow (twilio#387)
Browse files Browse the repository at this point in the history
  • Loading branch information
shrutiburman committed Feb 9, 2022
1 parent 5ee306f commit ae5ad5a
Show file tree
Hide file tree
Showing 3 changed files with 47 additions and 1 deletion.
23 changes: 23 additions & 0 deletions .github/workflows/debian-draft-executable-release.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
name: Debian Executable Release
on:
workflow_dispatch:
inputs:
dummy-input:
description: 'Trigger this workflow from draft-release-branch.'
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [14.x, 10.x]
steps:
- name: Checkout cli repo
uses: actions/checkout@v2
- run: make install
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v2
with:
node-version: ${{ matrix.node-version }}
cache: 'npm'
- name: Run tests
run: npm test
Original file line number Diff line number Diff line change
Expand Up @@ -109,7 +109,7 @@ jobs:

wait-for-macos-releases:
name: Wait for macos platform executables Release to complete
runs-on: ubuntu-latest
runs-on: macos-11
continue-on-error: true
needs: [ get-branch, get-tag ]
outputs:
Expand Down
23 changes: 23 additions & 0 deletions .github/workflows/windows-executable-draft-release.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
name: Windows Executable Release
on:
workflow_dispatch:
inputs:
dummy-input:
description: 'Trigger this workflow from draft-release-branch.'
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [14.x, 10.x]
steps:
- name: Checkout cli repo
uses: actions/checkout@v2
- run: make install
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v2
with:
node-version: ${{ matrix.node-version }}
cache: 'npm'
- name: Run tests
run: npm test

0 comments on commit ae5ad5a

Please sign in to comment.