Skip to content

Commit 0ab2c84

Browse files
committed
add test
1 parent 1f596c8 commit 0ab2c84

File tree

1 file changed

+22
-0
lines changed

1 file changed

+22
-0
lines changed

.github/workflows/test.yml

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
name: Test Extension
2+
3+
on:
4+
workflow_dispatch:
5+
6+
jobs:
7+
test:
8+
runs-on: ubuntu-latest
9+
strategy:
10+
matrix:
11+
node-version: [18.x]
12+
steps:
13+
- uses: actions/checkout@v3
14+
15+
- name: Use Node.js ${{ matrix.node-version }}
16+
uses: actions/setup-node@v3
17+
with:
18+
node-version: ${{ matrix.node-version }}
19+
- run: npm ci
20+
21+
- name: Run Jest tests
22+
run: npx jest

0 commit comments

Comments
 (0)