Add support for new Weaviate v1.26
features in TSv3
#677
Workflow file for this run
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
on: | |
push: | |
branches: | |
- main | |
tags: | |
- '**' | |
pull_request: | |
env: | |
WEAVIATE_124: 1.24.20 | |
WEAVIATE_125: 1.25.7 | |
WEAVIATE_126: preview--3aca6c5 | |
jobs: | |
checks: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: actions/setup-node@v3 | |
with: | |
node-version: '18.x' | |
- name: "Run checks" | |
run: | | |
npm ci | |
npm run lint | |
npm run format:check | |
npm run docs | |
tests: | |
needs: checks | |
runs-on: ubuntu-latest | |
strategy: | |
fail-fast: false | |
matrix: | |
versions: [ | |
{ node: "22.x", weaviate: $WEAVIATE_124}, | |
{ node: "22.x", weaviate: $WEAVIATE_125}, | |
{ node: "18.x", weaviate: $WEAVIATE_126}, | |
{ node: "20.x", weaviate: $WEAVIATE_126}, | |
{ node: "22.x", weaviate: $WEAVIATE_126} | |
] | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: actions/setup-node@v3 | |
with: | |
node-version: ${{ matrix.versions.node }} | |
- name: "Install dependencies" | |
run: | | |
npm ci | |
ci/run_dependencies.sh ${{ matrix.versions.weaviate }} | |
- name: "Run tests with authentication tests" | |
if: ${{ !github.event.pull_request.head.repo.fork }} | |
env: | |
OKTA_DUMMY_CI_PW: ${{ secrets.OKTA_DUMMY_CI_PW }} | |
WCS_DUMMY_CI_PW: ${{ secrets.WCS_DUMMY_CI_PW }} | |
AZURE_CLIENT_SECRET: ${{ secrets.AZURE_CLIENT_SECRET }} | |
OKTA_CLIENT_SECRET: ${{ secrets.OKTA_CLIENT_SECRET }} | |
run: | | |
npm test | |
npm run build | |
- name: "Run tests without authentication tests (for forks)" | |
if: ${{ github.event.pull_request.head.repo.fork }} | |
run: | | |
npm test | |
npm run build | |
- name: "Stop Weaviate" | |
run: ci/stop_dependencies.sh ${{ matrix.versions.weaviate }} | |
publish: | |
needs: tests | |
if: github.event_name == 'push' && startsWith(github.ref, 'refs/tags') | |
runs-on: ubuntu-latest | |
permissions: | |
contents: write # to upload the release | |
pages: write # to deploy to Pages | |
id-token: write # to verify the deployment originates from an appropriate source | |
steps: | |
- uses: actions/checkout@v3 | |
# Setup .npmrc file to publish to npm | |
- uses: actions/setup-node@v3 | |
with: | |
node-version: '18.x' | |
registry-url: 'https://registry.npmjs.org' | |
- run: npm ci | |
- run: npm run build | |
- run: npm publish --tag next | |
env: | |
NODE_AUTH_TOKEN: ${{ secrets.NPM_AUTOMATION_TOKEN }} | |
- run: npm run docs | |
- name: "Upload docs as pages artifact" | |
uses: actions/upload-pages-artifact@v3 | |
with: | |
path: ./docs | |
- name: "Deploy the uploaded pages artifact" | |
uses: actions/deploy-pages@v4 | |
- name: "Create a GitHub release" | |
uses: softprops/action-gh-release@v1 | |
with: | |
generate_release_notes: true | |
draft: true |