Skip to content

Daily integration testing #507

Daily integration testing

Daily integration testing #507

Workflow file for this run

name: Daily integration testing
on:
workflow_dispatch:
schedule:
- cron: "0 0 * * *"
jobs:
integration-tests-curl:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
ref: "9.2"
- 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-curl
- name: Integration tests
run: |
npm run test:integration-curl
integration-tests-python:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
ref: "9.2"
- 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-python
- name: Integration tests
run: |
npm run test:integration-python
integration-tests-javascript:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
ref: "9.2"
- 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-javascript
- name: Integration tests
run: |
npm run test:integration-javascript
integration-tests-php:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
ref: "9.2"
- name: Setup node.js
uses: actions/setup-node@v4
- name: Install
run: |
npm install
- name: Build
run: |
npm run build
- name: Install PHP
uses: shivammathur/setup-php@v2
with:
php-version: 8.4
- name: Prepare for testing
run: |
npm run test:setup-php
- name: Integration tests
run: |
npm run test:integration-php
integration-tests-ruby:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
ref: "9.2"
- name: Setup node.js
uses: actions/setup-node@v4
- name: Install
run: |
npm install
- name: Build
run: |
npm run build
- name: Install Ruby
uses: ruby/setup-ruby@v1
with:
ruby-version: 3.4
- name: Prepare for testing
run: |
npm run test:setup-ruby
- name: Integration tests
run: |
npm run test:integration-ruby