mirror of
https://github.com/ad1217/PrinterStatus
synced 2024-11-22 23:43:52 -05:00
Add github action to test building
would also do actual tests, but I haven't written any :)
This commit is contained in:
parent
d911588830
commit
b8a4b44d55
23
.github/workflows/test.yml
vendored
Normal file
23
.github/workflows/test.yml
vendored
Normal 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
|
Loading…
Reference in New Issue
Block a user