Skip to content

Bump body-parser and gatsby #1574

Bump body-parser and gatsby

Bump body-parser and gatsby #1574

Workflow file for this run

name: Build checks
on:
- push
- pull_request
jobs:
lint:
runs-on: ubuntu-latest
steps:
- name: Check out repository code
uses: actions/checkout@v2
- name: Retrieve required node version
run: |
echo "engine_node_version=$(jq -r '.engines.node' package.json)" >> $GITHUB_ENV
- uses: actions/setup-node@v2
with:
node-version: ${{ env.engine_node_version }}
- run: npm ci --legacy-peer-deps
- run: npm run lint --legacy-peer-deps