Skip to content

Commit 81ac004

Browse files
Merge branch 'main' into go_sdk_context
2 parents 673a3ea + 451519b commit 81ac004

File tree

315 files changed

+259170
-5131
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

315 files changed

+259170
-5131
lines changed

.github/workflows/apix-ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ jobs:
3939
matrix:
4040
os:
4141
- ubuntu
42-
node-version: [18.x]
42+
node-version: [22.x]
4343

4444
steps:
4545
- name: Cancel Previous Runs

.github/workflows/codegen-ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,7 @@ jobs:
7373
7474
- uses: actions/setup-node@v4
7575
with:
76-
node-version: 18.x
76+
node-version: 22.x
7777

7878
- name: Install dependencies
7979
run: |

.github/workflows/hackathon-ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ jobs:
3333
matrix:
3434
os:
3535
- ubuntu
36-
node-version: [18.x]
36+
node-version: [22.x]
3737

3838
steps:
3939
- name: Cancel Previous Runs

.github/workflows/lerna-publish.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ jobs:
5656
5757
- uses: actions/setup-node@v4
5858
with:
59-
node-version: 18.x
59+
node-version: 22.x
6060
registry-url: https://wombat-dressing-room.appspot.com
6161

6262
- name: Install dependencies and build

.github/workflows/resources-ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ jobs:
3838
- name: Install Node
3939
uses: actions/setup-node@v4
4040
with:
41-
node-version: 18.x
41+
node-version: 22.x
4242

4343
- name: Install Dependencies
4444
run: |

.github/workflows/tssdk-ci.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ jobs:
4343
matrix:
4444
os:
4545
- ubuntu
46-
node-version: [18.x, 20.x]
46+
node-version: [20.x, 22.x]
4747

4848
steps:
4949
- name: Cancel Previous Runs
@@ -110,7 +110,7 @@ jobs:
110110
path: results/tssdk
111111

112112
setup:
113-
uses: looker-open-source/reusable-actions/.github/workflows/supported-versions.yml@main
113+
uses: looker-open-source/reusable-actions/.github/workflows/primary-version.yml@main
114114
integration:
115115
needs: [unit, setup]
116116
name: Integration - ${{ matrix.os }} / Node.${{ matrix.node-version }} / Looker.${{ matrix.looker }}
@@ -122,7 +122,7 @@ jobs:
122122
runs-on: ${{ matrix.os }}-latest
123123
strategy:
124124
matrix:
125-
node-version: [18.x, 20.x]
125+
node-version: [20.x, 22.x]
126126
os:
127127
- ubuntu
128128
looker: ${{ fromJson(needs.setup.outputs.matrix_json) }}
@@ -169,7 +169,7 @@ jobs:
169169
${{ github.workspace }}/.github/scripts/wait_for_looker.sh
170170
171171
- name: Run Integration Tests
172-
run: yarn jest packages/sdk-node/test --reporters=default --reporters=jest-junit
172+
run: yarn test:nodeci
173173

174174
- name: Upload integration test results
175175
if: ${{ always() }}

.node-version

Lines changed: 0 additions & 1 deletion
This file was deleted.

.nvmrc

Lines changed: 0 additions & 1 deletion
This file was deleted.

.prettierignore

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,4 +6,5 @@
66
**/storybook-static
77
**/test/output
88
**/.eslintrc
9-
*.lock
9+
*.lock
10+
bin/**

.prettierrc.js

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,5 +4,6 @@ const config = {
44
semi: true,
55
singleQuote: true,
66
trailingComma: 'es5',
7+
arrowParens: 'avoid',
78
};
89
module.exports = config;

0 commit comments

Comments
 (0)