WCM-352: Rename volume properties to match the JS API for audio_data #61
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/[email protected] | |
- uses: actions/[email protected] | |
with: | |
python-version: "3.12" | |
cache: "pipenv" | |
- run: pip install pipenv | |
- uses: actions/[email protected] | |
with: | |
node-version: "20" | |
cache: "npm" | |
cache-dependency-path: "docs/api/package-lock.json" | |
- run: bin/test | |
- uses: slackapi/[email protected] | |
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}} |