Extended pm.request with headers, url, method, name, id, body, body.r… #233
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: Build on push | |
on: | |
push: | |
branches: | |
- master | |
- main | |
pull_request: | |
branches: | |
- main | |
jobs: | |
build-on-push: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v2 | |
- name: Use Node.js 18.x | |
uses: actions/setup-node@v1 | |
with: | |
node-version: 18.x | |
- name: Install dependencies | |
run: yarn install | |
- name: Format | |
run: yarn format | |
- name: Lint | |
run: yarn lint | |
- name: Test | |
run: yarn test | |
- name: Bundle | |
run: yarn bundle |