Skip to content

Commit e588677

Browse files
authored
Merge branch 'main' into feat-transparent-bg
2 parents dda540d + 6c582ce commit e588677

1 file changed

Lines changed: 26 additions & 0 deletions

File tree

.github/workflows/pr.yml

Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
name: Test on Pull Request
2+
3+
on:
4+
pull_request:
5+
branches:
6+
- main
7+
8+
jobs:
9+
test:
10+
runs-on: ubuntu-latest
11+
12+
steps:
13+
- name: Checkout code
14+
uses: actions/checkout@v4
15+
16+
- name: Set up Node.js
17+
uses: actions/setup-node@v4
18+
with:
19+
node-version: 'lts/*'
20+
cache: 'pnpm'
21+
22+
- name: Install dependencies
23+
run: pnpm install
24+
25+
- name: Run tests
26+
run: pnpm test

0 commit comments

Comments
 (0)