-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
8678e10
commit cf3a7d7
Showing
3 changed files
with
5 additions
and
5 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -8,10 +8,10 @@ jobs: | |
|
||
steps: | ||
- uses: actions/[email protected] | ||
- name: Use Node.js 16 | ||
uses: actions/setup-node@v4.0.2 | ||
- name: Setup Node.js environment | ||
uses: actions/setup-node@v4.1.0 | ||
with: | ||
node-version: 16.x | ||
node-version: 18 | ||
- run: npm ci | ||
- run: npm test | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -60,7 +60,7 @@ runs: | |
fi | ||
- name: Setup StackQL | ||
uses: stackql/[email protected].2 | ||
uses: stackql/[email protected].3 | ||
if: ${{steps.check-stackql.outputs.stackql_installed == 'false'}} | ||
with: | ||
use_wrapper: true | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
SELECT status, count(*) as num_instances | ||
FROM google.compute.instances | ||
WHERE project = 'stackql-demo' | ||
WHERE project = 'stackql-integration-tests' | ||
GROUP BY status; |