Skip to content

Commit

Permalink
fix(core): add the ci tests (#229)
Browse files Browse the repository at this point in the history
dummy commit for version bump

GH-228
  • Loading branch information
yeshamavani authored May 14, 2024
1 parent 3bd2a68 commit ab4a2ef
Show file tree
Hide file tree
Showing 2 changed files with 28 additions and 1 deletion.
27 changes: 27 additions & 0 deletions .github/workflows/main.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
name: CI

on:
push:
branches: [master]
pull_request:
branches: [master]

# This workflow contains a single job called "npm_test"
jobs:
npm_test:
# The type of runner that the job will run on
runs-on: ubuntu-latest

# Steps represent a sequence of tasks that will be executed as part of the job
steps:
# Checks-out your repository under $GITHUB_WORKSPACE
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: '18.x'

- name: Install Dependencies 📌
run: npm ci

- name: Run Test Cases 🔧
run: npm run test
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "loopback4-authentication",
"version": "12.0.0",
"description": "A loopback-next extension for authentication feature. Oauth strategies supported.",
"description": "A loopback-next extension for authentication feature. Various Oauth strategies supported.",
"keywords": [
"loopback-extension",
"loopback",
Expand Down

0 comments on commit ab4a2ef

Please sign in to comment.