Skip to content

Commit

Permalink
add manual test workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
chm-diederichs committed May 20, 2024
1 parent f4dac2b commit d528bfb
Showing 1 changed file with 30 additions and 0 deletions.
30 changes: 30 additions & 0 deletions .github/workflows/manual.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
# manual test for autobase
on:
workflow_dispatch:
inputs:
refToTest:
description: 'Branch, tag or commit SHA1 to test'
required: true
type: string

env:
BRITTLE_TIMEOUT: 60000
jobs:
deploy:
runs-on: ${{ matrix.os }}
strategy:
matrix:
node-version: [lts/*]
os: [ubuntu-latest, macos-latest, windows-latest]
timeout-minutes: 30
steps:
- uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1 https://github.com/actions/checkout/releases/tag/v4.1.1
with:
ref: ${{ inputs.refToTest }}
- name: install node
uses: actions/setup-node@1a4442cacd436585916779262731d5b162bc6ec7 # v3.8.2 https://github.com/actions/setup-node/releases/tag/v3.8.2
with:
node-version: ${{ matrix.node-version }}
- run: npm install
- run: npm test
- run: npm test -- --encrypt-all

0 comments on commit d528bfb

Please sign in to comment.