test bug: corrected prettier config file and multiple bundles bash sc… #51
Workflow file for this run
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] | |
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 bundle check and assert failing requests | |
run: | | |
npm run test | |
- name: checking for multiple bundles in a single command | |
run: | | |
bash ./.github/workflows/test\ bundles/multiple_bundles.sh |