Skip to content

Bump body-parser from 1.20.2 to 1.20.3 #167

Bump body-parser from 1.20.2 to 1.20.3

Bump body-parser from 1.20.2 to 1.20.3 #167

Workflow file for this run

name: Tests
on: [push, pull_request]
jobs:
test:
runs-on: ubuntu-latest
steps:
- name: Checkout repository 🛒
uses: actions/checkout@v3
- name: Set Timezone 🌍
uses: szenius/[email protected]
with:
timezoneLinux: Europe/London
- name: Set node version 🤖
run: echo "NODE_VERSION=$(cat .nvmrc)" >> $GITHUB_OUTPUT
id: nvm
- name: Set up Node.js ${{ steps.nvm.outputs.NODE_VERSION }} 🤖
uses: actions/setup-node@v3
with:
node-version: ${{ steps.nvm.outputs.NODE_VERSION }}
- name: Install dependencies 🌀
run: npm install
- name: Lint the code 🔍
run: npm run lint
- name: Run the tests 🧪
run: npm run test-single
- name: Upload coverage to Codecov 📈
uses: codecov/codecov-action@v3