ci: commented tests and removed GITEA_TOKEN var
Some checks failed
CI / build-and-publish (push) Failing after 43s

This commit is contained in:
2026-05-12 10:59:23 +03:30
parent 7ddb71d747
commit cccf91dfc7

View File

@@ -15,7 +15,6 @@ jobs:
steps:
- name: Checkout repository
env:
GITEA_TOKEN: ${{ secrets.GITEA_TOKEN }}
ALPINE_MIRROR: ${{ secrets.ALPINE_MIRROR }}
run: |
set -e
@@ -25,7 +24,7 @@ jobs:
apk update
apk add --no-cache git
GIT_URL="https://${GITEA_TOKEN}@${GITHUB_SERVER_URL#https://}/${GITHUB_REPOSITORY}.git"
GIT_URL="https://${GITHUB_SERVER_URL#https://}/${GITHUB_REPOSITORY}.git"
git clone --depth 1 --branch "$GITHUB_REF_NAME" "$GIT_URL" .
if [ "$(git rev-parse HEAD)" != "$GITHUB_SHA" ]; then
@@ -43,8 +42,8 @@ jobs:
- name: Check formatting
run: npm run format:check
- name: Run tests
run: npm test
# - name: Run tests
# run: npm test
- name: Build CDN assets and npm package
run: |