Skip to content

manual-test

manual-test #14

Workflow file for this run

name: "manual-test"
on: workflow_dispatch
env:
SLACK_WEBHOOK_URL: ${{ secrets.SLACK_WEBHOOK_URL }}
NODE_OPTIONS: --openssl-legacy-provider
jobs:
build:
runs-on: ubuntu-latest
steps:
- id: checkout
uses: actions/checkout@v3
- id: build
run: |
npm install
npm run all
- uses: ./
with:
status: ${{ job.status }}
steps: ${{ toJson(steps) }}
channel: '#actions'
message: Manual test of {{ env.GITHUB_REF_NAME }} branch...
if: always()