2
0
mirror of https://github.com/ad1217/PrinterStatus synced 2024-09-21 13:49:04 -04:00
PrinterStatus/.github/workflows/test.yml
Adam Goldsmith b8a4b44d55 Add github action to test building
would also do actual tests, but I haven't written any :)
2023-03-29 11:01:25 -04:00

24 lines
583 B
YAML

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