Skip to content

Commit

Permalink
rebasing local and remote.
Browse files Browse the repository at this point in the history
M'main' of github.com:henriquepcm/kiwi-monthly-bills-tracker
y
  • Loading branch information
Henrique Pochmann authored and Henrique Pochmann committed Aug 29, 2024
2 parents a18716b + 68e91e0 commit 32e46ac
Showing 1 changed file with 32 additions and 0 deletions.
32 changes: 32 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
name: CI/CD

on:
push:
branches:
- main
pull_request:
branches:
- main

jobs:
build:

runs-on: ubuntu-latest

steps:
- name: Checkout code
uses: actions/checkout@v3

- name: Set up Node.js
uses: actions/setup-node@v3
with:
node-version: '20'

- name: Install dependencies
run: npm install

- name: Build project
run: npm run build

- name: Run tests
run: npm test

0 comments on commit 32e46ac

Please sign in to comment.