Make responses optional on OperationObject #44
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: Pull Request Actions | |
on: | |
pull_request: | |
branches: [master] | |
jobs: | |
ci: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Install dependencies | |
run: npm install | |
- name: Versions used | |
run: npm run version | |
- name: Lint | |
run: npm run lint | |
- name: Build | |
run: npm run build | |
- name: Test + coverage | |
run: npm run cover:ci | |
- name: Integration Test | |
run: | | |
cd test | |
npm i | |
npm run test:cjs | |
npm run test:mjs | |
npm run test:ts | |
npm run test:ts-esm | |
npm run test:ts-node16 | |
npm run test:ts-esm-node16 |