diff --git a/.github/dependabot.yml b/.github/dependabot.yml deleted file mode 100644 index 55e09ee1..00000000 --- a/.github/dependabot.yml +++ /dev/null @@ -1,6 +0,0 @@ -version: 2 -updates: - - package-ecosystem: "npm" - directory: "/" - schedule: - interval: "weekly" diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml deleted file mode 100644 index 2f265a60..00000000 --- a/.github/workflows/build.yml +++ /dev/null @@ -1,29 +0,0 @@ -name: Build -on: - push: - branches: ["main"] - pull_request: {} -jobs: - build: - runs-on: ubuntu-latest - steps: - - name: Checkout - uses: actions/checkout@v4.1.2 - - name: Setup Node.js environment - uses: actions/setup-node@v4.0.2 - with: - node-version: ">=20.6.0" - - run: npm ci - - run: cp config.json.example config.json - - run: npm run verify - - run: npm run lint:ci - - run: npm run prettier - - run: npm run update-translations - - name: Fail if there are uncommitted changes - run: | - if [[ -n "$(git status --porcelain)" ]]; then - echo "Uncommitted changes detected:" - git status - git --no-pager diff - exit 1 - fi diff --git a/.github/workflows/docker.yml b/.github/workflows/docker.yml deleted file mode 100644 index 4a97729c..00000000 --- a/.github/workflows/docker.yml +++ /dev/null @@ -1,44 +0,0 @@ -name: Build Docker image -on: - push: - branches: - - main -jobs: - docker-amd64: - if: github.repository == 'OpenWF/SpaceNinjaServer' - runs-on: amd64 - steps: - - name: Set up Docker buildx - uses: docker/setup-buildx-action@v3 - - name: Log in to container registry - uses: docker/login-action@v3 - with: - username: openwf - password: ${{ secrets.DOCKERHUB_TOKEN }} - - name: Build and push - uses: docker/build-push-action@v6 - with: - platforms: linux/amd64 - push: true - tags: | - openwf/spaceninjaserver:latest - openwf/spaceninjaserver:${{ github.sha }} - docker-arm64: - if: github.repository == 'OpenWF/SpaceNinjaServer' - runs-on: arm64 - steps: - - name: Set up Docker buildx - uses: docker/setup-buildx-action@v3 - - name: Log in to container registry - uses: docker/login-action@v3 - with: - username: openwf - password: ${{ secrets.DOCKERHUB_TOKEN }} - - name: Build and push - uses: docker/build-push-action@v6 - with: - platforms: linux/arm64 - push: true - tags: | - openwf/spaceninjaserver:latest-arm64 - openwf/spaceninjaserver:${{ github.sha }}-arm64 diff --git a/package-lock.json b/package-lock.json index db97566d..b53f01ad 100644 --- a/package-lock.json +++ b/package-lock.json @@ -32,7 +32,7 @@ "devDependencies": { "@typescript-eslint/eslint-plugin": "^8.28.0", "@typescript-eslint/parser": "^8.28.0", - "eslint": "^8", + "eslint": "^8.57.1", "eslint-plugin-prettier": "^5.2.5", "prettier": "^3.5.3", "tree-kill": "^1.2.2" diff --git a/package.json b/package.json index 8b771442..e706db4a 100644 --- a/package.json +++ b/package.json @@ -48,7 +48,7 @@ "devDependencies": { "@typescript-eslint/eslint-plugin": "^8.28.0", "@typescript-eslint/parser": "^8.28.0", - "eslint": "^8", + "eslint": "^8.57.1", "eslint-plugin-prettier": "^5.2.5", "prettier": "^3.5.3", "tree-kill": "^1.2.2"