From b0f9eae01a3e96ffc2df5e088ea84aa801bfa756 Mon Sep 17 00:00:00 2001 From: Janos Dobronszki Date: Wed, 3 Nov 2021 09:31:38 +0000 Subject: [PATCH] F --- .github/workflows/generate.yml | 28 ++++++++++++++++++++++++++++ 1 file changed, 28 insertions(+) create mode 100644 .github/workflows/generate.yml diff --git a/.github/workflows/generate.yml b/.github/workflows/generate.yml new file mode 100644 index 0000000..9764ba7 --- /dev/null +++ b/.github/workflows/generate.yml @@ -0,0 +1,28 @@ +name: Test Clients +on: + push: + branches: + - main + - beta + - ci + +jobs: + generate: + name: Test Clients + runs-on: ubuntu-latest + steps: + - name: Check out repo + uses: actions/checkout@v2 + with: + path: clients + #ref: main + + - name: Test + working-directory: clients + env: + M3O_API_TOKEN: ${{ secrets.M3O_API_TOKEN }} + run: | + cd examples/helloworld/call + npm init -y + npm install --save m3o + node callTheHelloworldService.js