Skip to content

bump word-wrap from 1.2.3 to 1.2.4 in /client (#113) #97

bump word-wrap from 1.2.3 to 1.2.4 in /client (#113)

bump word-wrap from 1.2.3 to 1.2.4 in /client (#113) #97

Workflow file for this run

name: CI
on:
push:
branches:
- master
jobs:
deploy-on-render:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@master
- name: Use Node.js 16.x
uses: actions/setup-node@v1
with:
node-version: 16.x
- name: Yarn install BE
run: yarn
- name: Yarn Install and Build FE
run: |
cd client
yarn
yarn build
- name: Test
run: |
cd client
yarn lint .
yarn test --watchAll=false --verbose
- name: Deploy to Render
run: echo "Follow deployment on Render https://dashboard.render.com/"