chore(deps-dev): bump chai-http from 4.4.0 to 5.1.1 #227
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: Default Node 16 | |
on: | |
pull_request: | |
types: [opened, synchronize, reopened] | |
jobs: | |
lint: | |
name: lint | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checking Out Commits Securely . . . | |
uses: actions/checkout@v2 | |
- name: Setup Node 16 Environment . . . | |
uses: actions/setup-node@v3 | |
with: | |
node-version: 16 | |
- name: Install Dependencies . . . | |
working-directory: . | |
run: npm ci | |
- name: Run The Tests . . . | |
run: npm run test:lint | |
tests: | |
name: test | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checking Out Commits Securely . . . | |
uses: actions/checkout@v2 | |
- name: Setup Node 16 Environment . . . | |
uses: actions/setup-node@v3 | |
with: | |
node-version: 16 | |
- name: Install Dependencies . . . | |
working-directory: . | |
run: npm ci | |
- name: Run The Tests . . . | |
run: npm run test |