File tree Expand file tree Collapse file tree 2 files changed +5
-5
lines changed
packages/ts-morph/src/tests/issues Expand file tree Collapse file tree 2 files changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -4,18 +4,18 @@ on: [push, pull_request]
44
55jobs :
66 build :
7- name : test ubuntu-16.04
8- runs-on : ubuntu-16.04
7+ name : test ubuntu-latest
8+ runs-on : ubuntu-latest
99 steps :
1010 - uses : actions/checkout@v2
1111 - uses : actions/setup-node@v2
1212 with :
13- node-version : ' 12 '
13+ node-version : ' 16 '
1414 check-latest : true
1515 - uses : bvm/gh-action@v1.1.0
1616 - name : Build
1717 run : |
18- npm install
18+ npm ci
1919 npm run bootstrap
2020 npm run build
2121 npx lerna run ensure-no-project-compile-errors
Original file line number Diff line number Diff line change 11import { expect } from "chai" ;
22import { Project } from "../../Project" ;
33
4- describe . only ( "tests for issue #1198" , ( ) => {
4+ describe ( "tests for issue #1198" , ( ) => {
55 it ( "should not have issues when renaming private identifier" , ( ) => {
66 const project = new Project ( { useInMemoryFileSystem : true } ) ;
77 const sourceFile = project . createSourceFile ( "mod.ts" , `class Foo {
You can’t perform that action at this time.
0 commit comments