We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent cdb88a8 commit f958782Copy full SHA for f958782
1 file changed
.github/workflows/test.yaml
@@ -0,0 +1,25 @@
1
+name: Run Test
2
+on: pull_request
3
+jobs:
4
+ tests:
5
+ runs-on: ubuntu-latest
6
+ steps:
7
+ - uses: actions/checkout@v3
8
+
9
+ - name: Setup Node
10
+ uses: actions/setup-node@v3
11
+ with:
12
+ node-version: 18
13
+ cache: npm
14
15
+ - name: NPM install
16
+ run: npm install
17
18
+ - name: Run Test
19
+ run: npm run test
20
21
+ - name: TSC
22
+ run: tsc
23
24
+ - name: Run build
25
+ run: npm run build
0 commit comments