v3.1.2 #65
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: module testing | |
on: [push, pull_request] | |
jobs: | |
format: | |
runs-on: ubuntu-latest | |
name: zzapi-cli testing | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: actions/setup-node@v3 | |
with: | |
node-version: "20" | |
- name: build zzapi runner | |
run: | | |
npm i | |
npm run build | |
- name: run full bundle check | |
run: | | |
bash ./.github/workflows/test\ bundles/test_bundle.sh | |
- name: assert failing requests | |
run: | | |
bash ./.github/workflows/test\ bundles/check_failing_reqs.sh | |
- name: checking for multiple bundles in a single command | |
run: | | |
bash ./.github/workflows/test\ bundles/multiple_bundles.sh |