Skip to content

Commit

Permalink
setting github actions
Browse files Browse the repository at this point in the history
  • Loading branch information
kirengamartial committed Aug 1, 2024
1 parent 595e028 commit b9843c5
Show file tree
Hide file tree
Showing 2 changed files with 34 additions and 23 deletions.
23 changes: 0 additions & 23 deletions .github/PULL_REQUEST_TEMPLATE.MD

This file was deleted.

34 changes: 34 additions & 0 deletions .github/workflows/config.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,34 @@
name: CI/CD

on:
push:
branches: [develop]
pull_request:
branches: [develop]

jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Use Node.js
uses: actions/setup-node@v3
with:
node-version: "20"
- name: Install dependencies
run: yarn install
- name: Build
run: yarn build

test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Use Node.js
uses: actions/setup-node@v3
with:
node-version: "20"
- name: Install dependencies
run: yarn install
- name: Run tests and coverage
run: yarn coverage

0 comments on commit b9843c5

Please sign in to comment.