Skip to content

fix bug in filePath with docx; updated test cases and gitignore #5

fix bug in filePath with docx; updated test cases and gitignore

fix bug in filePath with docx; updated test cases and gitignore #5

Workflow file for this run

# .github/workflows/ci.yml
name: CI
on:
push:
branches:
- 'main'
- 'development'
- 'feature**'
jobs:
test:
runs-on: ubuntu-latest
steps:
- name: Checkout Repository
uses: actions/checkout@v2
- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version: 20
- name: Install Dependencies
run: npm install
- name: Run Tests and Linting
run: |
npm test
npm run lint