-
Notifications
You must be signed in to change notification settings - Fork 1
45 lines (37 loc) · 903 Bytes
/
test.yml
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
35
36
37
38
39
40
41
42
43
44
45
name: Run Tests
on:
push:
branches:
- '**'
pull_request:
branches:
- main
env:
CI: true
jobs:
test:
timeout-minutes: 10
runs-on: ubuntu-latest
steps:
- name: Checkout code repository
uses: actions/checkout@v3
with:
fetch-depth: 0
- uses: pnpm/action-setup@v4
name: Install pnpm
with:
version: 9.15.1
run_install: false
- name: Install Node.js
uses: actions/setup-node@v4
with:
node-version: 20
cache: 'pnpm'
- name: Install dependencies
run: pnpm install
- name: Run tests for @repo/base
run: pnpm run --filter @repo/base test
- name: Run tests for @repo/ioloc
run: pnpm run --filter @repo/ioloc test
- name: Run tests for @repo/translate
run: pnpm run --filter @repo/translate test