Add github action to test building

would also do actual tests, but I haven't written any :)
This commit is contained in:
Adam Goldsmith 2023-03-29 10:42:27 -04:00
parent d911588830
commit b8a4b44d55
1 changed files with 23 additions and 0 deletions

23
.github/workflows/test.yml vendored Normal file
View File

@ -0,0 +1,23 @@
name: Test
on: [push]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [18, 19, current]
steps:
- uses: actions/checkout@v3
- uses: pnpm/action-setup@v2
with:
version: 8
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
cache: 'pnpm'
- name: Install dependencies
run: pnpm install --recursive --include-workspace-root
- name: Build
run: pnpm run --recursive --include-workspace-root build