This repository has been archived by the owner on Apr 8, 2024. It is now read-only.
use Issue tracker for new feature requests #264
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: test | |
on: | |
push: | |
jobs: | |
test: | |
name: test | |
runs-on: ubuntu-latest | |
services: | |
zeebe: | |
image: camunda/zeebe:8.2.3 | |
ports: | |
- 26500:26500 | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@master | |
- name: Set up Node.js | |
uses: actions/setup-node@master | |
with: | |
node-version: 16.17.0 | |
- run: npm install | |
- run: npm run test:integration | |
# env: | |
# ZEEBE_ADDRESS: ${{ secrets.ZEEBE_ADDRESS }} | |
# ZEEBE_CLIENT_ID: ${{ secrets.ZEEBE_CLIENT_ID }} | |
# ZEEBE_AUTHORIZATION_SERVER_URL: ${{ secrets.ZEEBE_AUTHORIZATION_SERVER_URL }} | |
# ZEEBE_CLIENT_SECRET: ${{ secrets.ZEEBE_CLIENT_SECRET }} |