Skip to content

Merge pull request #237 from FormidableLabs/task/export-util-fns #67

Merge pull request #237 from FormidableLabs/task/export-util-fns

Merge pull request #237 from FormidableLabs/task/export-util-fns #67

name: Static Analysis
on:
push:
branches:
- master
pull_request:
workflow_dispatch:
jobs:
static-analysis:
name: 'Lint and Type-check'
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v3
with:
node-version: 18
- uses: pnpm/action-setup@v2
with:
version: 8.2.0
- name: Get pnpm store directory
id: pnpm-cache
shell: bash
run: echo "STORE_PATH=$(pnpm store path)" >> $GITHUB_OUTPUT
- uses: actions/cache@v3
name: Setup pnpm cache
with:
path: ${{ steps.pnpm-cache.outputs.STORE_PATH }}
key: ${{ runner.os }}-pnpm-store-${{ hashFiles('**/pnpm-lock.yaml') }}
restore-keys: ${{ runner.os }}-pnpm-store-
- name: Install dependencies
run: pnpm install
- name: Build library
run: pnpm run build
- name: Type Check
run: pnpm run typecheck
- name: Lint
run: pnpm run lint