module commands to be marked as unstable and require clients to opt in #1731
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
name: Tests | |
on: | |
push: | |
branches: | |
- master | |
- v4.0 | |
- v5 | |
pull_request: | |
branches: | |
- master | |
- v4.0 | |
- v5 | |
jobs: | |
tests: | |
runs-on: ubuntu-latest | |
strategy: | |
fail-fast: false | |
matrix: | |
node-version: ['18', '20'] | |
redis-version: ['6.2.6-v17', '7.2.0-v13', '7.4.0-v1'] | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
fetch-depth: 1 | |
- name: Use Node.js ${{ matrix.node-version }} | |
uses: actions/setup-node@v3 | |
with: | |
node-version: ${{ matrix.node-version }} | |
- name: Update npm | |
run: npm i -g npm | |
if: ${{ matrix.node-version <= 14 }} | |
- name: Install Packages | |
run: npm ci | |
- name: Build | |
run: npm run build -- ./packages/client ./packages/test-utils ./packages/bloom ./packages/graph ./packages/json ./packages/search ./packages/time-series ./packages/redis | |
- name: Run Tests | |
run: npm run test -ws --if-present -- --forbid-only --redis-version=${{ matrix.redis-version }} | |
- name: Upload to Codecov | |
run: | | |
curl https://keybase.io/codecovsecurity/pgp_keys.asc | gpg --no-default-keyring --keyring trustedkeys.gpg --import | |
curl -Os https://uploader.codecov.io/latest/linux/codecov | |
curl -Os https://uploader.codecov.io/latest/linux/codecov.SHA256SUM | |
curl -Os https://uploader.codecov.io/latest/linux/codecov.SHA256SUM.sig | |
gpgv codecov.SHA256SUM.sig codecov.SHA256SUM | |
shasum -a 256 -c codecov.SHA256SUM | |
chmod +x codecov | |
./codecov |