-
Notifications
You must be signed in to change notification settings - Fork 2
42 lines (34 loc) · 1.01 KB
/
testrunner.yaml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
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}}