-
-
Notifications
You must be signed in to change notification settings - Fork 5
34 lines (28 loc) · 719 Bytes
/
tests.yml
File metadata and controls
34 lines (28 loc) · 719 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
name: Run Tests
on:
push:
branches:
- develop
- main
pull_request:
branches:
- develop
- main
jobs:
test:
runs-on: ubuntu-latest
env:
THUMBNAIL_URL: ${{ vars.THUMBNAIL_URL }}
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Install bun
uses: oven-sh/setup-bun@v2
with:
# Pin to 1.3.5: Bun 1.3.10 has a regression (descriptor.value undefined with NestJS/Swagger).
# Fix merged in PR #27527 (Feb 28) but not yet in a release. Revert when 1.3.11+ is latest.
bun-version: '1.3.5'
- name: Install dependencies
run: bun install
- name: Run tests
run: bun test