Skip to content

Commit 6963fe4

Browse files
committed
add testing to test_build workflow
1 parent a510897 commit 6963fe4

File tree

1 file changed

+5
-2
lines changed

1 file changed

+5
-2
lines changed

.github/workflows/test_build.yml

+5-2
Original file line numberDiff line numberDiff line change
@@ -10,15 +10,18 @@ on:
1010
# A workflow run is made up of one or more jobs that can run sequentially or in parallel
1111
jobs:
1212

13-
build:
13+
build_and_test:
1414
runs-on: ubuntu-latest
1515
steps:
1616
- uses: actions/checkout@v4
1717
- name: setup node
1818
uses: actions/setup-node@v4
1919
with:
20-
node-version: '16'
20+
node-version: '22'
2121
- name: Build library
2222
run: |
2323
npm install
2424
npm run build
25+
- name: Test library
26+
run: |
27+
node --test

0 commit comments

Comments
 (0)