diff options
Diffstat (limited to '.github')
| -rw-r--r-- | .github/workflows/ci.yml | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index ca0c6936..ec049686 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -4,9 +4,9 @@ name: Gemini Code CI on: push: - branches: [ main ] # Run on pushes to the main branch + branches: [main] # Run on pushes to the main branch pull_request: - branches: [ main ] # Run on pull requests targeting the main branch + branches: [main] # Run on pull requests targeting the main branch jobs: build_and_test: @@ -16,7 +16,7 @@ jobs: strategy: matrix: # Specify the Node.js versions you want to test against - node-version: [ 20.x ] # You can add more like [18.x, 20.x] + node-version: [20.x] # You can add more like [18.x, 20.x] steps: # 1. Checkout Code @@ -60,4 +60,4 @@ jobs: # 8. Testing # Uncomment when we have tests. #- name: Run tests - # run: npm test
\ No newline at end of file + # run: npm test |
