Two teams try and fill in any horizontal, vertical, or diagonal line on a bingo board by playing maps on osu!
osu.bingo
osu
1name: Run Vitest Tests
2
3on:
4 push:
5 branches: ['main']
6 pull_request:
7 branches: ['main']
8
9jobs:
10 test:
11 runs-on: ubuntu-latest
12
13 steps:
14 - uses: actions/checkout@v4
15
16 - name: 'Install Node'
17 uses: actions/setup-node@v4
18 with:
19 node-version: '20.x'
20
21 - name: 'Install Dependencies'
22 run: npm install
23
24 - name: 'Run Tests'
25 run: npx vitest