Skip to content

Bump express from 4.19.2 to 4.21.0 in /examples/demo-react #140

Bump express from 4.19.2 to 4.21.0 in /examples/demo-react

Bump express from 4.19.2 to 4.21.0 in /examples/demo-react #140

Workflow file for this run

name: CICD
# Triggers when pushed to master branch
on:
push:
paths-ignore:
- "README.md"
- "build/**"
- "demo/**"
jobs:
release:
name: lint type-check test
runs-on: ubuntu-latest
steps:
- name: checkout
uses: actions/checkout@v2
- name: setup-node
uses: actions/setup-node@v2
with:
node-version: 14.x
registry-url: "https://registry.npmjs.org"
- name: Install Dependencies
run: |
yarn install
yarn dev