Skip to content
This repository has been archived by the owner on Oct 27, 2023. It is now read-only.

Deprecation notice (one less service for Jaydr to break) #353

Deprecation notice (one less service for Jaydr to break)

Deprecation notice (one less service for Jaydr to break) #353

Workflow file for this run

name: Build-Test
on: [push, pull_request]
jobs:
build:
runs-on: ubuntu-20.04
steps:
- name: Checkout Repo
uses: actions/checkout@v2
- name: Get yarn cache directory path
id: yarn-cache-dir-path
run: echo "::set-output name=dir::$(yarn cache dir)"
- name: Use Yarn Cache
uses: actions/cache@v2
id: yarn-cache
with:
path: ${{ steps.yarn-cache-dir-path.outputs.dir }}
key: ${{ runner.os }}-yarn-${{ hashFiles('**/yarn.lock') }}
restore-keys: |
${{ runner.os }}-yarn-
- name: Yarn Install
run: yarn install --prefer-offline --frozen-lockfile
- name: Build Local
run: yarn run build