Skip to content

Commit 18249bb

Browse files
committed
chore(ci): fix ci
1 parent bf377b6 commit 18249bb

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

.github/workflows/ci.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -4,18 +4,18 @@ on: [push, pull_request]
44

55
jobs:
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

packages/ts-morph/src/tests/issues/1198tests.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
import { expect } from "chai";
22
import { 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 {

0 commit comments

Comments
 (0)