sssg/.forgejo/workflows/test.yaml
yourfriendoss 0259a96937
All checks were successful
/ build (node-16) (push) Successful in 14s
/ build (windows-node-iron) (push) Successful in 1m9s
fix workflow
2025-10-20 01:25:01 +03:00

15 lines
474 B
YAML

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' }}
- name: run tests
run: bun test
shell: ${{ matrix.os == 'windows-node-iron' && 'powershell' || 'bash' }}