Skip to content

Merge pull request #169 from christsjcr/dependabot/npm_and_yarn/tsx-3… #8

Merge pull request #169 from christsjcr/dependabot/npm_and_yarn/tsx-3…

Merge pull request #169 from christsjcr/dependabot/npm_and_yarn/tsx-3… #8

Workflow file for this run

name: Build
on:
push:
branches: ["main"]
pull_request:
branches: ["main"]
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 build