Skip to content

Commit

Permalink
chore(ci): fix ci
Browse files Browse the repository at this point in the history
  • Loading branch information
dsherret committed Oct 30, 2021
1 parent bf377b6 commit 18249bb
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion packages/ts-morph/src/tests/issues/1198tests.ts
Original file line number Diff line number Diff line change
@@ -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 {
Expand Down

0 comments on commit 18249bb

Please sign in to comment.