Skip to content

Commit 60abbc3

Browse files
committed
Add tests workflow
1 parent a90edf6 commit 60abbc3

File tree

1 file changed

+23
-0
lines changed

1 file changed

+23
-0
lines changed

.github/workflows/test.yml

+23
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
2+
name: Tests
3+
4+
on:
5+
push:
6+
branches:
7+
- main
8+
pull_request: {}
9+
10+
concurrency:
11+
group: tests-${{ github.head_ref || github.ref }}
12+
cancel-in-progress: true
13+
14+
jobs:
15+
test:
16+
name: "Test: signal-polyfill"
17+
runs-on: ubuntu-latest
18+
timeout-minutes: 4
19+
20+
steps:
21+
- uses: actions/checkout@v4
22+
- uses: actions/setup-node@v4
23+
- run: pnpm test

0 commit comments

Comments
 (0)