Skip to content

Commit

Permalink
Add checks github action
Browse files Browse the repository at this point in the history
  • Loading branch information
reilem committed Feb 23, 2024
1 parent fa39e3d commit cba8186
Showing 1 changed file with 29 additions and 0 deletions.
29 changes: 29 additions & 0 deletions .github/workflows/checks.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
name: Checks

on:
push:
branches:
- main
pull_request:
branches:
- main

jobs:
run_pnpm_scripts:
runs-on: ubuntu-latest

steps:
- name: Checkout Repository
uses: actions/checkout@v2

- name: Install PNPM
uses: pnpm/action-setup@v3

- name: Typecheck
run: pnpm run typecheck

- name: Prettier Check
run: pnpm run prettiercheck

- name: Test
run: pnpm run test

0 comments on commit cba8186

Please sign in to comment.