We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1214546 commit 571a9d1Copy full SHA for 571a9d1
.github/workflows/Vercel Deployment.yml
@@ -3,17 +3,19 @@ on:
3
pull_request:
4
branches:
5
- master
6
+ - dev
7
push:
8
9
10
11
jobs:
12
test:
13
runs-on: ubuntu-latest
14
steps:
15
- uses: actions/checkout@v2
16
- uses: actions/setup-node@v2
17
with:
- node-version: '16.x'
18
+ node-version: '18.x'
19
- run: yarn install
20
- run: yarn run test
21
env:
test/test.js
@@ -1,5 +1,5 @@
1
const request = require('supertest')
2
-const app = require('../app')
+const app = require('../api/app')
describe('testing the code rating engine APIs', () => {
let token = ''
0 commit comments