Skip to content

Commit

Permalink
Automate node and web package publishing trail 4
Browse files Browse the repository at this point in the history
  • Loading branch information
kavitharaju committed Nov 15, 2024
1 parent 99533cf commit e555229
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions .github/workflows/check-on-push.yml
Original file line number Diff line number Diff line change
Expand Up @@ -97,7 +97,9 @@ jobs:
npm install .
npm install ../tree-sitter-usfm3
- name: Run tests
run: node_modules/mocha/bin/mocha.js --timeout=40000 --grep "Include|Exclude|wild|Compare" --invert
run: |
cd node-usfm-parser
node_modules/mocha/bin/mocha.js --timeout=40000 --grep "Include|Exclude|wild|Compare" --invert
Run-Web-tests:
name: Run Web tests
Expand Down Expand Up @@ -125,7 +127,9 @@ jobs:
cp node_modules/web-tree-sitter/tree-sitter.wasm ./
cp ../tree-sitter-usfm3/tree-sitter-usfm3.wasm ./tree-sitter-usfm.wasm
- name: Run tests
run: node_modules/mocha/bin/mocha.js --timeout=40000 --grep "Include|Exclude|wild|Compare" --invert
run: |
cd web-usfm-parser
node_modules/mocha/bin/mocha.js --timeout=40000 --grep "Include|Exclude|wild|Compare" --invert
Expand Down

0 comments on commit e555229

Please sign in to comment.