Skip to content

Commit

Permalink
Merge pull request #64 from johnspackman/typescript-updates
Browse files Browse the repository at this point in the history
updates to support the PR for better typescript support


Thanks @johnspackman !
  • Loading branch information
hkollmann committed Apr 9, 2024
2 parents 009c9d6 + 74afb11 commit 97d12f2
Show file tree
Hide file tree
Showing 16 changed files with 1,621 additions and 845 deletions.
21 changes: 12 additions & 9 deletions .github/workflows/on-new-framework-tag.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,29 +23,32 @@ jobs:
uses: actions/checkout@v3
with:
persist-credentials: false

- name: output config
run: |
node --version
npm --version
echo "destination version is ${{ steps.get_version.outputs.version }}"
echo "destination dir is ${{ steps.get_version.outputs.destination_dir }}"
- name: add compiler
run: |
npm -g install @qooxdoo/framework@${{ steps.get_version.outputs.version }}
npm -g install @qooxdoo/framework@${{ steps.get_version.outputs.version }}
- name: Build API Viewer
run: qx deploy --target=build -v --clean

run: qx deploy --target=build -v --clean

- name: Create API data
run: |
node compiled/deploy-node/createclassdb/index.js html/resource/apidata
node compiled/build-node/createclassdb/index.js html/resource/apidata
- name: Run Tests
run: qx test --target=build -v
run: qx test --target=build -v

- name: Deploy to GH page
uses: peaceiris/actions-gh-pages@v3
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
publish_dir: ./html
destination_dir: ${{ steps.get_version.outputs.destination_dir }}


5 changes: 5 additions & 0 deletions .prettierrc.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
{
"trailingComma": "none",
"arrowParens": "avoid",
"printWidth": 120
}
Loading

0 comments on commit 97d12f2

Please sign in to comment.