-
Notifications
You must be signed in to change notification settings - Fork 25
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
f4dac2b
commit d528bfb
Showing
1 changed file
with
30 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |