diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index fdffdfa1..20e400bb 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -1,7 +1,7 @@ # ci.yml file for GitHub Actions name: CI -on: [push, pull_request] +on: [push] jobs: build_and_lint: @@ -31,10 +31,4 @@ jobs: run: bash lint.sh - name: Create the docs directory locally in CI - run: npx typedoc typedoc --out docs client/**/*.ts - - - name: Deploy 🚀 - uses: JamesIves/github-pages-deploy-action@4.1.4 - with: - branch: main - folder: docs \ No newline at end of file + run: npx typedoc client/**/*.ts diff --git a/package.json b/package.json index 025949d9..75a73198 100644 --- a/package.json +++ b/package.json @@ -1,26 +1,5 @@ { - "name": "document", - "version": "1.0.0", - "description": "*A real-time web interface to spawn and control units in DCS World*", - "main": "index.js", - "directories": { - "doc": "docs" - }, "dependencies": { "typedoc": "^0.25.1" - }, - "devDependencies": {}, - "scripts": { - "test": "echo \"Error: no test specified\" && exit 1" - }, - "repository": { - "type": "git", - "url": "git+https://github.com/Pax1601/DCSOlympus.git" - }, - "author": "", - "license": "ISC", - "bugs": { - "url": "https://github.com/Pax1601/DCSOlympus/issues" - }, - "homepage": "https://github.com/Pax1601/DCSOlympus#readme" + } }