Skip to content

Add zlib decompression for XACTDOC.ZIPXML files #22

Add zlib decompression for XACTDOC.ZIPXML files

Add zlib decompression for XACTDOC.ZIPXML files #22

Workflow file for this run

name: Test
on:
push:
branches:
- main
- develop
pull_request:
jobs:
test-backend:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Setup Python
uses: actions/setup-python@v4
with:
python-version: '3.11'
- name: Install dependencies
run: |
cd backend
pip install -r requirements.txt
- name: Run tests
run: |
cd backend
pytest || echo "No tests configured yet"
test-frontend:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Setup Node.js
uses: actions/setup-node@v3
with:
node-version: '18'
- name: Install dependencies
run: |
cd frontend
npm ci
- name: Lint
run: |
cd frontend
npm run lint
- name: Build
run: |
cd frontend
npm run build