Bump body-parser from 1.20.1 to 1.20.3 #175
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
# This action will run the tests locally using Chrome | |
name: localtests | |
on: | |
pull_request: | |
types: [opened, synchronize, reopened, labeled, unlabeled] | |
branches: | |
- master | |
jobs: | |
localtests: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- uses: actions/setup-node@v1 | |
name: Set up NodeJS | |
with: | |
node-version: 18 | |
- name: Install | |
run: npm install | |
# Run the tests locally | |
- name: Run the tests locally | |
run: npm run test |