Skip to content

Commit

Permalink
Update node
Browse files Browse the repository at this point in the history
  • Loading branch information
tyler-romero committed Dec 3, 2024
1 parent aaf2175 commit b8a4d41
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions .github/workflows/cicd.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ on:
push:

env:
PYTHON_VERSION: "3.10"
PYTHON_VERSION: "3.11"
POETRY_VERSION: "1.7.1"
jobs:
# Run our linter on every push to the repository.
Expand Down Expand Up @@ -65,7 +65,7 @@ jobs:
# This is associated with the "sdk-test-prod" user, credentials on 1password
GROUNDLIGHT_API_TOKEN: ${{ secrets.GROUNDLIGHT_API_TOKEN_PROD }}

# Check that the docs build. (No broken links, etc.)
# Check that the docs build. (No broken links, etc.)
test-docs:
runs-on: ubuntu-latest
defaults:
Expand All @@ -77,14 +77,14 @@ jobs:
- name: Setup npm
uses: actions/setup-node@v3
with:
node-version: 18
node-version: 22
cache: npm
- name: Install dependencies
run: npm install
- name: Build website
run: npm run build

# Checks that the API reference docs built with shpinx build
# Checks that the API reference docs built with sphinx build
test-api-reference-docs:
runs-on: ubuntu-latest
steps:
Expand Down Expand Up @@ -135,6 +135,7 @@ jobs:
"3.10",
"3.11",
"3.12",
"3.13",
]
install_extras: [true, false]
steps:
Expand Down Expand Up @@ -257,7 +258,7 @@ jobs:
- name: Setup npm
uses: actions/setup-node@v3
with:
node-version: 18
node-version: 22
cache: npm
- name: Install dependencies
run: npm install
Expand Down Expand Up @@ -292,8 +293,7 @@ jobs:
runs-on: ubuntu-latest
needs:
- test-comprehensive
# For now, we'll require the comprehensive tests to succeed, but not the linter checks.
# - lint
- lint
env:
POETRY_PYPI_TOKEN_PYPI: ${{ secrets.PYPI_PUBLISH_TOKEN }}
steps:
Expand Down

0 comments on commit b8a4d41

Please sign in to comment.