Skip to content

Commit 5e7e41d

Browse files
authored
Merge pull request #18 from JuliaPluto/test-ci
2 parents b50c40c + 00e34c4 commit 5e7e41d

File tree

1 file changed

+29
-0
lines changed

1 file changed

+29
-0
lines changed

.github/workflows/test.yml

+29
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,29 @@
1+
name: Run tests
2+
3+
on:
4+
push:
5+
branches:
6+
- main
7+
pull_request:
8+
branches:
9+
- main
10+
11+
jobs:
12+
test:
13+
runs-on: ubuntu-latest
14+
15+
steps:
16+
- uses: actions/checkout@v4
17+
18+
- uses: actions/setup-node@v4
19+
with:
20+
node-version: "20"
21+
22+
- run: yarn install
23+
# not needed, faster without:
24+
# env:
25+
# NODE_OPTIONS: "--max-old-space-size=8192"
26+
27+
- run: yarn test
28+
29+

0 commit comments

Comments
 (0)