Skip to content

Commit

Permalink
Merge branch 'main' of github.com:JepriCreations/commitollama
Browse files Browse the repository at this point in the history
  • Loading branch information
anjerodev committed Jan 24, 2025
2 parents 10bd7ed + 3bbbb4e commit eb12a0d
Show file tree
Hide file tree
Showing 2 changed files with 32 additions and 0 deletions.
7 changes: 7 additions & 0 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
version: 2
updates:
- package-ecosystem: "npm"
directories:
- "/"
schedule:
interval: "weekly"
25 changes: 25 additions & 0 deletions .github/workflows/build-and-test.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
name: Build and Test commitollama
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
build-and-test:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version: '20'
cache: 'npm'
- name: Install dependencies
run: npm ci
- name: Build
run: npm run build
- name: Run tests
run: xvfb-run -a npm test

0 comments on commit eb12a0d

Please sign in to comment.