We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c10d9f2 commit 7b6a9eeCopy full SHA for 7b6a9ee
1 file changed
.github/workflows/npm-test.yml
@@ -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