Skip to content

update react bootstrap #5

update react bootstrap

update react bootstrap #5

Workflow file for this run

name: App Workflow
on:
push:
branches: [master]
pull_request:
branches: [master]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [14.x]
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v2
with:
node-version: ${{ matrix.node-version }}
- name: Install dependencies
run: yarn --frozen-lockfile
- name: Run unit tests
run: yarn test
- name: Check linting
run: yarn lint
cypress-run:
needs: build
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Run end-to-end tests
uses: cypress-io/github-action@v2
with:
start: yarn dev