File tree 3 files changed +58
-1
lines changed 3 files changed +58
-1
lines changed Original file line number Diff line number Diff line change
1
+
2
+ name : Build
3
+ on :
4
+ push :
5
+ branches :
6
+ - main
7
+ pull_request :
8
+ types : [opened, synchronize, reopened]
9
+ jobs :
10
+ sonarcloud :
11
+ name : Run unit tests
12
+ runs-on : ubuntu-latest
13
+ steps :
14
+ - uses : actions/checkout@v2
15
+ with :
16
+ fetch-depth : 0 # Shallow clones should be disabled for a better relevancy of analysis
17
+ - name : Use Node.js
18
+ uses : actions/setup-node@v1
19
+ with :
20
+ node-version : ' 18.x'
21
+ - run : npm ci
22
+ - run : npm test
23
+ env :
24
+ CI : true
Original file line number Diff line number Diff line change
1
+ # This workflow will run tests using node and then publish a package to GitHub Packages when a release is created
2
+ # For more information see: https://help.github.com/actions/language-and-framework-guides/publishing-nodejs-packages
3
+
4
+ name : Node.js Package
5
+
6
+ on :
7
+ release :
8
+ types : [created]
9
+
10
+ jobs :
11
+ build :
12
+ runs-on : ubuntu-latest
13
+ steps :
14
+ - uses : actions/checkout@v2
15
+ - uses : actions/setup-node@v2
16
+ with :
17
+ node-version : 18
18
+ - run : npm ci
19
+ - run : npm test
20
+
21
+ publish-npm :
22
+ needs : build
23
+ runs-on : ubuntu-latest
24
+ steps :
25
+ - uses : actions/checkout@v2
26
+ - uses : actions/setup-node@v2
27
+ with :
28
+ node-version : 18
29
+ registry-url : https://registry.npmjs.org/
30
+ - run : npm ci
31
+ - run : npm run compile
32
+ - run : npm publish --access=public
33
+ env :
34
+ NODE_AUTH_TOKEN : ${{secrets.NPM_TOKEN}}
Original file line number Diff line number Diff line change @@ -618,7 +618,6 @@ export class DifferContext {
618
618
}
619
619
620
620
private async getNextPair ( ) :Promise < RowPair > {
621
- // TODO: parallelize
622
621
const oldRow = await this . getNextOldRow ( ) ;
623
622
const newRow = await this . getNextNewRow ( ) ;
624
623
return { oldRow, newRow } ;
You can’t perform that action at this time.
0 commit comments