Skip to content

Commit 605486b

Browse files
committed
chore: fix ci workflow
1 parent e9450e1 commit 605486b

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

.github/workflows/ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,5 +21,5 @@ jobs:
2121
with:
2222
node-version: ${{ matrix.node-version }}
2323
- run: npm ci
24-
- run: npm run build
2524
- run: npm test run
25+
- run: npm run build

.github/workflows/release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,8 +17,8 @@ jobs:
1717
node-version: 18
1818
registry-url: "https://registry.npmjs.org"
1919
- run: npm ci
20-
- run: npm run build
2120
- run: npm test run
21+
- run: npm run build
2222
- run: npm publish
2323
env:
2424
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}

test/index.test.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ import {
77
StartQueryExecutionCommand,
88
} from "@aws-sdk/client-athena";
99
import { mockClient } from "aws-sdk-client-mock";
10-
import AthenaQuery from "..";
10+
import AthenaQuery from "../index";
1111

1212
const athenaMock = mockClient(AthenaClient);
1313

0 commit comments

Comments
 (0)