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 1f58b16 commit 4d9bceeCopy full SHA for 4d9bcee
.github/workflows/e2e-tests.yml
@@ -17,7 +17,13 @@ jobs:
17
- uses: actions/checkout@v4
18
- uses: actions/setup-node@v4
19
with: { node-version: 20, cache: npm }
20
- - run: npm ci --omit=optional
+ - run: npm ci
21
+ - run: |
22
+ node - <<'NODE'
23
+ const v = require('./package.json').devDependencies.rollup ?? 'latest';
24
+ console.log('ℹ Installing native Rollup helper for', v);
25
+ NODE
26
+ - run: npm install --no-save @rollup/rollup-linux-x64-gnu@$(node -p "require('./package.json').devDependencies.rollup || '4'")
27
28
- uses: supabase/setup-cli@v1
29
with: { version: 2.24.3 }
0 commit comments