ZO-4596: Zappi returns read_more_url and topiclinks of centerpages of areas #11
Workflow file for this run
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
name: Testrunner | |
on: | |
push: | |
branches: | |
- "main" | |
pull_request: | |
env: | |
PROJECT: zappi-spec | |
BUILD_URL: "${{github.server_url}}/${{github.repository}}/actions/runs/${{github.run_id}}" | |
jobs: | |
test: | |
runs-on: zon-ubuntu-general-dind | |
permissions: | |
contents: "read" | |
steps: | |
- uses: actions/checkout@v4.1.1 | |
- uses: actions/setup-python@v5.0.0 | |
with: | |
python-version: "3.12" | |
cache: "pipenv" | |
- run: pip install pipenv | |
- uses: actions/setup-node@v4.0.0 | |
with: | |
node-version: "20" | |
cache: "npm" | |
cache-dependency-path: "docs/api/package-lock.json" | |
- run: bin/test | |
- uses: slackapi/slack-github-action@v1.24.0 | |
if: failure() && github.ref_name == 'main' | |
with: | |
channel-id: "${{secrets.SLACK_TEAM_CONTENT_CHANNEL_ID}}" | |
slack-message: ":small_red_triangle_down: <${{env.BUILD_URL}}|${{env.PROJECT}}> tests failed" | |
env: | |
SLACK_BOT_TOKEN: ${{secrets.SLACK_BOT_TOKEN}} |