Skip to content

Kerem/eth subscribe #138

Kerem/eth subscribe

Kerem/eth subscribe #138

Workflow file for this run

name: Docs
on:
push:
branches:
- main
pull_request:
branches:
- main
concurrency: ${{ github.workflow }}-${{ github.ref }}
jobs:
ci:
name: Docs
runs-on: ubuntu-latest
steps:
- name: Checkout Repo
uses: actions/checkout@v3
- name: Setup Node.js
uses: actions/setup-node@v3
with:
node-version: 20
- uses: pnpm/action-setup@v4.0.0
with:
version: 8.6.10
- name: Install Dependencies
run: pnpm install
- name: Build
run: pnpm build
- name: Docs
run: pnpm docs:generate --frozen
env:
# if this is a pull request, set the STRICT environment variable to true
STRICT: ${{ github.event_name == 'pull_request' && 'true' || 'false' }}
- name: Slack Notification
id: slack
uses: slackapi/slack-github-action@v1.24.0
with:
# For posting a rich message using Block Kit
payload: |
{
"blocks": [
{
"type": "section",
"text": {
"type": "mrkdwn",
"text": "GitHub Action DOCS result: ${{ job.status }}\n${{ github.event.pull_request.html_url || github.event.head_commit.url }}"
}
}
]
}
env:
SLACK_WEBHOOK_URL: ${{ secrets.SLACK_CI_WEBHOOK_URL }}
SLACK_WEBHOOK_TYPE: INCOMING_WEBHOOK