Skip to content

Merge pull request #74 from cassidyjames/authors-verification-ownership #157

Merge pull request #74 from cassidyjames/authors-verification-ownership

Merge pull request #74 from cassidyjames/authors-verification-ownership #157

Workflow file for this run

name: check
on:
push:
branches: ["main"]
pull_request:
branches: ["main"]
jobs:
check:
name: Check
runs-on: ubuntu-latest
steps:
- name: Check out Git repository
uses: actions/checkout@v3
- name: Set up Node.js
uses: actions/setup-node@v3
with:
node-version: "18"
- name: Install dependencies
run: yarn install --frozen-lockfile
- name: Typecheck
run: yarn typecheck
- name: Build application
run: yarn build
env:
CI: true