Skip to content

Bump ip from 1.1.5 to 1.1.9 in /frontend #351

Bump ip from 1.1.5 to 1.1.9 in /frontend

Bump ip from 1.1.5 to 1.1.9 in /frontend #351

Workflow file for this run

name: Frontend build
on:
pull_request:
paths:
- 'frontend/**'
jobs:
build:
runs-on: ubuntu-latest
defaults:
run:
shell: bash
working-directory: frontend
strategy:
matrix:
node-version: [12.x]
steps:
- uses: actions/checkout@v2
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v1
with:
node-version: ${{ matrix.node-version }}
- run: yarn install
- run: yarn prettier
- run: yarn build
- run: yarn test