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 b323745 commit 10e7dbbCopy full SHA for 10e7dbb
.github/workflows/run_tests.yml
@@ -0,0 +1,30 @@
1
+name: Run tests
2
+
3
+on:
4
+ workflow_dispatch:
5
6
+env:
7
+ package_dir: "/"
8
9
+jobs:
10
+ run-tests:
11
+ runs-on: ubuntu-latest
12
13
+ permissions:
14
+ contents: write
15
16
+ steps:
17
+ - uses: actions/checkout@v2
18
+ - uses: actions/setup-node@v2
19
+ with:
20
+ node-version: "22"
21
+ registry-url: "https://registry.npmjs.org"
22
23
+ - name: Install environment
24
+ run: npm ci
25
26
+ - name: Run tests
27
+ run: npm run test
28
29
+ - name: clean up
30
+ run: rm -rf test-bcb dist node_modules
0 commit comments