Skip to content

fix: install example deps in release script #331

fix: install example deps in release script

fix: install example deps in release script #331

Workflow file for this run

name: Run Tests
on:
pull_request:
push:
branches: main
jobs:
run-unit-tests:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Get yarn cache directory path
id: yarn-cache-dir-path
run: echo "::set-output name=dir::$(yarn cache dir)"
- uses: actions/cache@v2
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
run: yarn install --frozen-lockfile
- name: Lint
run: yarn lint
- name: TypeScript Check
run: yarn ts:check
- name: TypeScript Example Check
run: |
yarn example
yarn example ts:check
- name: Tests
run: yarn test