We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b3cf27a commit 4d2798eCopy full SHA for 4d2798e
2 files changed
.github/workflows/preview.yml
@@ -1,4 +1,4 @@
1
-name: preview
+name: Preview
2
3
on: [pull_request]
4
.github/workflows/typescript.yml
@@ -0,0 +1,19 @@
+name: Typescript
+
+on: [pull_request]
5
+permissions:
6
+ contents: read
7
8
+jobs:
9
+ test:
10
+ runs-on: ubuntu-latest
11
+ steps:
12
+ - uses: actions/checkout@v4
13
+ - uses: actions/setup-node@v4
14
+ with:
15
+ node-version: 22
16
+ - run: npm ci
17
+ - name: test pkg
18
+ run: npm test
19
+ working-directory: ./typescript
0 commit comments