Skip to content

Commit 10e7dbb

Browse files
committed
Adds action that simply runs tests
1 parent b323745 commit 10e7dbb

File tree

1 file changed

+30
-0
lines changed

1 file changed

+30
-0
lines changed

.github/workflows/run_tests.yml

Lines changed: 30 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -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

Comments
 (0)