Skip to content

Commit cff7515

Browse files
committed
Setup gh actions
1 parent d12b1d7 commit cff7515

1 file changed

Lines changed: 26 additions & 0 deletions

File tree

.github/workflows/test.yml

Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
name: Tests
2+
3+
on:
4+
push:
5+
branches:
6+
- main
7+
8+
jobs:
9+
test:
10+
runs-on: ubuntu-latest
11+
12+
steps:
13+
- name: Checkout
14+
uses: actions/checkout@v4
15+
16+
- uses: pnpm/action-setup@v3
17+
name: Install pnpm
18+
with:
19+
version: 8
20+
run_install: false
21+
22+
- name: Install dependencies
23+
run: pnpm i
24+
25+
- name: Run tests
26+
run: pnpm test

0 commit comments

Comments
 (0)