Skip to content

Commit 7b6a9ee

Browse files
committed
Basic build+test for npm
1 parent c10d9f2 commit 7b6a9ee

1 file changed

Lines changed: 21 additions & 0 deletions

File tree

.github/workflows/npm-test.yml

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
name: Test pyret-npm CLI
2+
3+
on:
4+
workflow_dispatch:
5+
push:
6+
7+
jobs:
8+
build-test-publish:
9+
runs-on: ubuntu-latest
10+
timeout-minutes: 30
11+
defaults:
12+
run:
13+
working-directory: ./npm
14+
steps:
15+
- uses: actions/checkout@v4
16+
- uses: actions/setup-node@v4
17+
with:
18+
node-version: 24
19+
- run: npm ci
20+
- run: npm run build
21+
- run: npm test

0 commit comments

Comments
 (0)