Skip to content

Updated freps profile #59

Updated freps profile

Updated freps profile #59

Workflow file for this run

name: Build
on:
pull_request:
branches: ["main", "production"]
jobs:
build:
concurrency: ci-${{ github.ref }} # Recommended if you intend to make multiple deployments in quick succession.
runs-on: ubuntu-latest
steps:
- name: Checkout 🛎️
uses: actions/checkout@v3
- name: Install and Build 🔧 # use the lockfile for reproducibility, run typechecking, then output to build folder
run: |
yarn install --frozen-lockfile
yarn run check
yarn lint
yarn build