Skip to content

Commit

Permalink
Create Ci.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
MarufHasan24 committed Oct 5, 2023
1 parent b372fe3 commit 0f42ebf
Showing 1 changed file with 24 additions and 0 deletions.
24 changes: 24 additions & 0 deletions .github/workflows/Ci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
name: Continuous Integration

on:
push:
branches:
- master

jobs:
build:
name: Code tests
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3

- uses: actions/setup-node@v3
with:
node-version: 20
cache: npm

- name: 📦 Install dependencies
run: npm ci

- name: 🧪 Run all tests
run: npm run test

0 comments on commit 0f42ebf

Please sign in to comment.