Skip to content

Add button to export compressed images #137

Add button to export compressed images

Add button to export compressed images #137

Workflow file for this run

name: CI
on:
pull_request:
push:
branches: [ main, master ]
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: '20'
cache: 'npm'
- run: npm install
- run: npm run lint
- run: npm test
env:
CI: true
stress-test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: '20'
cache: 'npm'
- run: npm install
- name: Run stress test (10K - 1M lines)
run: npm run test:stress
env:
NODE_OPTIONS: '--max-old-space-size=4096'