Skip to content

Commit

Permalink
chore: rf
Browse files Browse the repository at this point in the history
  • Loading branch information
jxom committed May 31, 2024
1 parent 744de55 commit 02d44a0
Show file tree
Hide file tree
Showing 8 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/on-push-to-main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ jobs:
fetch-depth: 0

- name: Install dependencies
uses: wevm/actions/.github/actions/pnpm
uses: wevm/actions/.github/actions/pnpm@main

- name: Create version pull request or publish to npm
uses: changesets/action@v1
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/verify.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ jobs:
uses: actions/checkout@v4

- name: Install dependencies
uses: wevm/actions/.github/actions/pnpm
uses: wevm/actions/.github/actions/pnpm@main

- name: Lint code
run: pnpm lint
Expand All @@ -35,7 +35,7 @@ jobs:
uses: actions/checkout@v4

- name: Install dependencies
uses: wevm/actions/.github/actions/pnpm
uses: wevm/actions/.github/actions/pnpm@main

- name: Build
run: pnpm build
Expand All @@ -51,7 +51,7 @@ jobs:
uses: actions/checkout@v4

- name: Install dependencies
uses: wevm/actions/.github/actions/pnpm
uses: wevm/actions/.github/actions/pnpm@main

- name: Run tests
run: pnpm test
2 changes: 1 addition & 1 deletion src/exports/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4,4 +4,4 @@ export {
type InstanceOptions,
type InstanceStartOptions,
defineInstance,
} from '../instances/defineInstance.js'
} from '../instance.js'
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import { expect, test } from 'vitest'
import { defineInstance } from './defineInstance.js'
import { defineInstance } from './instance.js'

test('default', async () => {
let started = false
Expand Down
File renamed without changes.
2 changes: 1 addition & 1 deletion src/instances/ethereum/anvil.test.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import { afterEach, expect, test } from 'vitest'
import type { Instance } from '../defineInstance.js'
import type { Instance } from '../../instance.js'
import { type AnvilParameters, anvil } from './anvil.js'

const instances: Instance[] = []
Expand Down
2 changes: 1 addition & 1 deletion src/instances/ethereum/anvil.ts
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import { type ResultPromise, execa } from 'execa'
import { defineInstance } from '../../instance.js'
import { stripColors } from '../../utils/stripColors.js'
import { toArgs } from '../../utils/toArgs.js'
import { defineInstance } from '../defineInstance.js'

export type AnvilParameters = {
/**
Expand Down
Empty file added src/pool.ts
Empty file.

0 comments on commit 02d44a0

Please sign in to comment.