Skip to content

Commit

Permalink
Add CI check that TS build works (#37)
Browse files Browse the repository at this point in the history
* Create build.yml

Add CI check that build works

* Test TS failing

* Revert "Test TS failing"

This reverts commit e6dc1c8.

* Clean up comments
  • Loading branch information
mikewesthad authored Jan 29, 2025
1 parent 9349632 commit c50cc3c
Showing 1 changed file with 25 additions and 0 deletions.
25 changes: 25 additions & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
name: CI checks

on:
push:
branches: ["main"]
pull_request:
branches: ["main"]

jobs:
build:
runs-on: ubuntu-latest

strategy:
matrix:
node-version: [22.x]

steps:
- uses: actions/checkout@v4
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
cache: "npm"
- run: npm ci
- run: npm run build

0 comments on commit c50cc3c

Please sign in to comment.