Skip to content

manual-test

manual-test #15

Workflow file for this run

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