We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 20781c2 commit 538d1eaCopy full SHA for 538d1ea
.github/workflows/test.yml
@@ -0,0 +1,31 @@
1
+name: Tests
2
+on:
3
+ pull_request:
4
+ push:
5
+jobs:
6
+ test-node:
7
+ runs-on: ubuntu-latest
8
+ steps:
9
+ - uses: actions/checkout@v3
10
+ - name: Set up Node.js
11
+ uses: actions/setup-node@v3
12
+ with:
13
+ node-version: 20.19.0
14
+ - name: setup project
15
+ run: npm i
16
+ - name: run tests
17
+ run: |
18
+ npm run test:node
19
+ test-browser:
20
21
22
23
24
25
26
27
28
29
30
31
+ npm run test:browser
0 commit comments