Skip to content

V2: dompdf prototype #14

V2: dompdf prototype

V2: dompdf prototype #14

Workflow file for this run

name: Tests
on:
pull_request: ~
push: ~
jobs:
split:
runs-on: ubuntu-20.04
steps:
- uses: actions/checkout@v4
with:
sparse-checkout: composer.json
- uses: actions/github-script@v7
id: packages
with:
script: |
const fs = require('fs');
const composer = JSON.parse(
fs.readFileSync('./composer.json')
);
console.log(
composer
.autoload['psr-4']
.map(
function (element) {
return {
// name: index,
path: element
};
}
);
);
console.log(composer);