Skip to content

Commit

Permalink
CI: Updates CI trigger time (#691)
Browse files Browse the repository at this point in the history
* ci: add new CI job for testing

* chore: remove unused linting before commit

* ci: update testing CI

* ci: update yarn caching logic

* ci: refacor dependency caching logic in ci files

* ci: update CI trigger time
  • Loading branch information
dohooo authored Oct 4, 2024
1 parent 3a030b3 commit c942ae7
Showing 1 changed file with 12 additions and 4 deletions.
16 changes: 12 additions & 4 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -1,11 +1,19 @@
name: CI

on:
push:
branches: ["main"]
pull_request:
branches: ["main"]
workflow_dispatch:
types: [opened, synchronize, reopened, ready_for_review]

# allow manual triggers
workflow_dispatch: {}

# Cancel in progress workflows on pull_requests.
# https://docs.github.com/en/actions/using-jobs/using-concurrency#example-using-a-fallback-value
concurrency:
group: ${{ github.workflow }}-${{ github.head_ref || github.run_id }}
cancel-in-progress: true

permissions: read-all

jobs:
test:
Expand Down

0 comments on commit c942ae7

Please sign in to comment.