Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
name: Test blocklists before release

on: [push, pull_request]
on: [ close ]
Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Bug: Workflow trigger event is invalid and breaks CI

This appears to be an accidental edit (the PR description mentions phone/Samsung device). The workflow is now broken in multiple ways: the on: [ close ] trigger uses an invalid event name (GitHub Actions has no close event), runs-on: is empty (missing required runner like ubuntu-latest), and run: for tests is empty (missing npm run test). These changes completely disable the test workflow and will cause parsing errors.


Please tell me if this was useful or not with a 👍 or 👎.

Additional Locations (2)

Fix in Cursor Fix in Web


jobs:
unit:
runs-on: ubuntu-latest
runs-on:
steps:
- uses: actions/checkout@v2
- name: Use Node.js 16
Expand All @@ -14,4 +14,4 @@ jobs:
- name: Install dependencies
run: npm install
- name: Run tests
run: npm run test
run: