2023-12-07 17:14:26 +01:00
|
|
|
name: Test
|
|
|
|
|
2023-01-25 20:06:33 +01:00
|
|
|
on:
|
|
|
|
push:
|
|
|
|
branches:
|
|
|
|
- main
|
|
|
|
pull_request:
|
2023-11-20 08:51:54 +01:00
|
|
|
branches:
|
|
|
|
- main
|
|
|
|
|
2023-12-07 17:14:26 +01:00
|
|
|
env:
|
|
|
|
FORCE_COLOR: 2
|
|
|
|
|
2023-01-25 20:06:33 +01:00
|
|
|
jobs:
|
2023-12-07 17:14:26 +01:00
|
|
|
test:
|
2023-01-25 20:06:33 +01:00
|
|
|
runs-on: ubuntu-latest
|
2023-11-20 08:51:54 +01:00
|
|
|
|
2023-01-25 20:06:33 +01:00
|
|
|
steps:
|
2023-11-20 08:51:54 +01:00
|
|
|
- uses: actions/checkout@v4
|
2024-11-23 08:18:32 +01:00
|
|
|
- uses: pnpm/action-setup@v4
|
2023-01-25 20:06:33 +01:00
|
|
|
with:
|
2024-07-18 16:35:26 +02:00
|
|
|
version: 9
|
2023-11-20 08:51:54 +01:00
|
|
|
- uses: actions/setup-node@v4
|
2023-01-25 20:06:33 +01:00
|
|
|
with:
|
2024-07-18 16:35:26 +02:00
|
|
|
node-version: 22
|
2023-01-25 20:25:21 +01:00
|
|
|
cache: pnpm
|
2023-01-25 20:06:33 +01:00
|
|
|
- name: Install dependencies
|
|
|
|
run: pnpm install --ignore-scripts
|
2023-12-07 17:14:26 +01:00
|
|
|
- name: Build
|
|
|
|
run: pnpm run build
|