add all of the testing
Some checks failed
/ build (node-16) (push) Failing after 33s
/ build (windows-node-iron) (push) Failing after 2m26s

This commit is contained in:
Soph :3 2025-10-20 01:23:51 +03:00
parent d5b4341487
commit 91f39a80a7
12 changed files with 485 additions and 69 deletions

View file

@ -0,0 +1,17 @@
on: [push]
jobs:
build:
strategy:
matrix:
os: [windows-node-iron, node-16]
runs-on: ${{ matrix.os }}
steps:
- uses: http://github.com/actions/checkout@v4
- uses: http://github.com/oven-sh/setup-bun@v2
- run: bun install
shell: ${{ matrix.os == 'windows-node-iron' && 'powershell' || 'bash' }}
- run: bun run prod
shell: ${{ matrix.os == 'windows-node-iron' && 'powershell' || 'bash' }}
- name: run tests
run: bun test
shell: ${{ matrix.os == 'windows-node-iron' && 'powershell' || 'bash' }}