diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index f9de410e5..92b64a362 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -4,18 +4,18 @@ on: [push, pull_request] jobs: build: - name: test ubuntu-16.04 - runs-on: ubuntu-16.04 + name: test ubuntu-latest + runs-on: ubuntu-latest steps: - uses: actions/checkout@v2 - uses: actions/setup-node@v2 with: - node-version: '12' + node-version: '16' check-latest: true - uses: bvm/gh-action@v1.1.0 - name: Build run: | - npm install + npm ci npm run bootstrap npm run build npx lerna run ensure-no-project-compile-errors diff --git a/packages/ts-morph/src/tests/issues/1198tests.ts b/packages/ts-morph/src/tests/issues/1198tests.ts index f1b7e54bb..72ee14799 100644 --- a/packages/ts-morph/src/tests/issues/1198tests.ts +++ b/packages/ts-morph/src/tests/issues/1198tests.ts @@ -1,7 +1,7 @@ import { expect } from "chai"; import { Project } from "../../Project"; -describe.only("tests for issue #1198", () => { +describe("tests for issue #1198", () => { it("should not have issues when renaming private identifier", () => { const project = new Project({ useInMemoryFileSystem: true }); const sourceFile = project.createSourceFile("mod.ts", `class Foo {