We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0d0a726 commit 60cd064Copy full SHA for 60cd064
1 file changed
.github/workflows/test.yaml
@@ -62,9 +62,18 @@ jobs:
62
'netlify/framework-adapters' }}
63
run: echo "SKIP_LIVE_TESTS=true" >> "$GITHUB_ENV"
64
- name: Tests
65
+ # angular-runtime requires Node 22+, so it's excluded on the Node 20 job
66
+ if: ${{ matrix.node-version != '20.19.0' }}
67
run: npm run test --workspaces=true
68
env:
69
NETLIFY_AUTH_TOKEN: ${{ secrets.NETLIFY_AUTH_TOKEN }}
70
+ - name: Tests (excludes angular-runtime, which requires Node 22+)
71
+ if: ${{ matrix.node-version == '20.19.0' }}
72
+ run: >-
73
+ npm run test --workspace=packages/nuxt-module --workspace=packages/vite-plugin
74
+ --workspace=packages/vite-plugin-tanstack-start
75
+ env:
76
+ NETLIFY_AUTH_TOKEN: ${{ secrets.NETLIFY_AUTH_TOKEN }}
77
- name: Warn if live tests were skipped
78
if: ${{ env.SKIP_LIVE_TESTS == 'true' }}
79
run: |
0 commit comments