diff options
| author | Fuwn <[email protected]> | 2025-09-06 16:54:43 -0700 |
|---|---|---|
| committer | Fuwn <[email protected]> | 2025-09-06 16:54:43 -0700 |
| commit | a61a0a1bb352b0823321f9062f2faf415f7f4019 (patch) | |
| tree | 19c9c91d82d49577a10ef88644d5610219236ac9 /.github | |
| parent | chore: Add justfile (diff) | |
| download | umabotdiscord-a61a0a1bb352b0823321f9062f2faf415f7f4019.tar.xz umabotdiscord-a61a0a1bb352b0823321f9062f2faf415f7f4019.zip | |
ci(Actions): Remove test requirement for release
Diffstat (limited to '.github')
| -rw-r--r-- | .github/workflows/ci.yaml | 20 |
1 files changed, 10 insertions, 10 deletions
diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index ab2c382..34a4045 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -5,15 +5,15 @@ on: pull_request: name: ci jobs: - test: - runs-on: ubuntu-latest - steps: - - uses: actions/checkout@v5 - - uses: actions/setup-node@v4 - with: - node-version: 18 - - run: npm install - - run: npm test + # test: + # runs-on: ubuntu-latest + # steps: + # - uses: actions/checkout@v5 + # - uses: actions/setup-node@v4 + # with: + # node-version: 18 + # - run: npm install + # - run: npm test lint: runs-on: ubuntu-latest steps: @@ -26,7 +26,7 @@ jobs: release: if: github.ref == 'refs/heads/main' runs-on: ubuntu-latest - needs: [test, lint] + needs: [lint] # test steps: - uses: actions/checkout@v5 - uses: actions/setup-node@v4 |