Skip to content

Commit

Permalink
ci: check types
Browse files Browse the repository at this point in the history
  • Loading branch information
alvarosabu committed Dec 22, 2024
1 parent 126316f commit b673728
Showing 1 changed file with 29 additions and 0 deletions.
29 changes: 29 additions & 0 deletions .github/workflows/types.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
name: Run Type Test
on: [push]

env:
PNPM_CACHE_FOLDER: .pnpm-store

jobs:
test:
name: Are the types wrong?
runs-on: ubuntu-24.04
strategy:
matrix:
node-version: [20]
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup pnpm
uses: pnpm/action-setup@v4
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
cache: pnpm
- name: Install dependencies
run: pnpm install
- name: Build
run: pnpm run build
- name: Check Types
run: pnpm run test:attw

0 comments on commit b673728

Please sign in to comment.