File tree 2 files changed +28
-1
lines changed
2 files changed +28
-1
lines changed Original file line number Diff line number Diff line change
1
+ name : CI
2
+
3
+ on :
4
+ push :
5
+ branches : [master]
6
+ pull_request :
7
+ branches : [master]
8
+
9
+ # This workflow contains a single job called "npm_test"
10
+ jobs :
11
+ npm_test :
12
+ # The type of runner that the job will run on
13
+ runs-on : ubuntu-latest
14
+
15
+ # Steps represent a sequence of tasks that will be executed as part of the job
16
+ steps :
17
+ # Checks-out your repository under $GITHUB_WORKSPACE
18
+ - uses : actions/checkout@v3
19
+ - uses : actions/setup-node@v3
20
+ with :
21
+ node-version : ' 18.x'
22
+
23
+ - name : Install Dependencies 📌
24
+ run : npm ci
25
+
26
+ - name : Run Test Cases 🔧
27
+ run : npm run test
Original file line number Diff line number Diff line change 1
1
{
2
2
"name" : " loopback4-authentication" ,
3
3
"version" : " 12.0.0" ,
4
- "description" : " A loopback-next extension for authentication feature. Oauth strategies supported." ,
4
+ "description" : " A loopback-next extension for authentication feature. Various Oauth strategies supported." ,
5
5
"keywords" : [
6
6
" loopback-extension" ,
7
7
" loopback" ,
You can’t perform that action at this time.
0 commit comments