Skip to content

Daily integration testing #108

Daily integration testing

Daily integration testing #108

Workflow file for this run

name: Daily 8.16 branch integration testing
on:
workflow_dispatch:
schedule:
- cron: "0 0 * * *"
jobs:
integration-tests-curl:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
ref: 8.16
- name: Setup node.js
uses: actions/setup-node@v4
- name: Install
run: |
npm install
- name: Build
run: |
npm run build
- name: Prepare for testing
run: |
npm run test:setup
- name: Integration tests
run: |
npm run test:integration-curl
integration-tests-python:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
ref: 8.16
- name: Setup node.js
uses: actions/setup-node@v4
- name: Install
run: |
npm install
- name: Build
run: |
npm run build
- name: Prepare for testing
run: |
npm run test:setup
- name: Integration tests
run: |
npm run test:integration-python
integration-tests-javascript:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
ref: 8.16
- name: Setup node.js
uses: actions/setup-node@v4
- name: Install
run: |
npm install
- name: Build
run: |
npm run build
- name: Prepare for testing
run: |
npm run test:setup
- name: Integration tests
run: |
npm run test:integration-javascript