Skip to content

Commit

Permalink
Migrate CI to Github Actions
Browse files Browse the repository at this point in the history
  • Loading branch information
NoelDeMartin committed Dec 17, 2023
1 parent ae8b193 commit beca6f3
Show file tree
Hide file tree
Showing 2 changed files with 17 additions and 1 deletion.
16 changes: 16 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
name: CI

on: [push, pull_request]

jobs:
ci:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version-file: '.nvmrc'
- run: npm ci
- run: npm run build
- run: npm run lint
- run: npm run test
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Soukai [![Build Status](https://semaphoreci.com/api/v1/noeldemartin/soukai/branches/main/badge.svg)](https://semaphoreci.com/noeldemartin/soukai)
# Soukai ![CI](https://github.com/NoelDeMartin/soukai/actions/workflows/ci.yml/badge.svg)

A refreshing javascript library to work with your non relational database.

Expand Down

0 comments on commit beca6f3

Please sign in to comment.