Bump body-parser from 1.18.3 to 1.20.3 in /demo #16
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
name: CI | |
on: | |
push: | |
branches: | |
- master | |
pull_request: | |
branches: | |
- master | |
jobs: | |
test: | |
name: Test on node ${{ matrix.node_version }} | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
node_version: [12, 14, 16, 17] | |
steps: | |
- uses: actions/checkout@master | |
- name: Use Node.js ${{ matrix.node_version }} | |
uses: actions/setup-node@master | |
with: | |
node-version: ${{ matrix.node_version }} | |
- name: Install dependencies | |
# TODO switch away from jsen and figure out impact of library change and migration steps on applications using this. | |
run: npm ci --no-audit | |
- name: build:lib, test:integration | |
run: | | |
# Actually runs typescript, eslint is failing | |
npm run lint || exit 1 | |
npm run test || exit 1 |