Skip to content

Bump express from 4.17.3 to 4.19.2 in /examples/express-http-server-ts #100

Bump express from 4.17.3 to 4.19.2 in /examples/express-http-server-ts

Bump express from 4.17.3 to 4.19.2 in /examples/express-http-server-ts #100

Workflow file for this run

on:
pull_request:
branches:
- main
paths-ignore:
- '**.md'
push:
branches:
- main
paths-ignore:
- '**.md'
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node: ['14', '16', '18', '20']
name: Node ${{ matrix.node }}
steps:
- uses: actions/checkout@v2
- name: Setup node
uses: actions/setup-node@v2
with:
node-version: ${{ matrix.node }}
cache: 'yarn'
- run: yarn
- run: yarn build
- run: yarn test
- run: yarn codecov