Skip to content

build(deps-dev): bump word-wrap from 1.2.3 to 1.2.4 in /frontend #83

build(deps-dev): bump word-wrap from 1.2.3 to 1.2.4 in /frontend

build(deps-dev): bump word-wrap from 1.2.3 to 1.2.4 in /frontend #83

Workflow file for this run

name: frontend
on:
pull_request:
jobs:
build-frontend:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: "16"
- name: Get yarn cache directory path
id: yarn-cache-dir-path
run: echo "::set-output name=dir::$(yarn cache dir)"
- name: Cache yarn
uses: actions/cache@v3
id: yarn-cache # use this to check for `cache-hit` (`steps.yarn-cache.outputs.cache-hit != 'true'`)
with:
path: ${{ steps.yarn-cache-dir-path.outputs.dir }}
key: ${{ runner.os }}-yarn-${{ hashFiles('**/yarn.lock') }}
restore-keys: |
${{ runner.os }}-yarn-:
- name: Install Dependencies
working-directory: ./frontend
run: yarn install
- name: Run build, test, and lint
working-directory: ./frontend
run: |
yarn eslint
yarn format-check
yarn tsc
yarn test
yarn build