diff --git a/.github/workflows/integrated_test.yml b/.github/workflows/integrated_test.yml index 0a735f59..fd0b8f18 100644 --- a/.github/workflows/integrated_test.yml +++ b/.github/workflows/integrated_test.yml @@ -13,6 +13,7 @@ jobs: strategy: matrix: + node-version: [18.x] example_dir: - examples/v7-managed-react - examples/v7-simple-react @@ -26,7 +27,7 @@ jobs: - name: Use Node.js uses: actions/setup-node@v3 with: - node-version: ${{ matrix.node-version || '18.x' }} + node-version: ${{ matrix.node-version }} cache: 'yarn' - run: yarn install --frozen-lockfile - run: yarn bootstrap diff --git a/packages/storycap/package.json b/packages/storycap/package.json index 7c472e45..5925d503 100644 --- a/packages/storycap/package.json +++ b/packages/storycap/package.json @@ -3,7 +3,7 @@ "version": "4.3.1", "description": "A Storybook addon, Save the screenshot image of your stories! via puppeteer.", "engines": { - "node": ">=14.13" + "node": ">=18" }, "main": "lib/index.js", "module": "lib-esm/index.js", diff --git a/packages/storycrawler/package.json b/packages/storycrawler/package.json index 388b063f..83f0ff67 100644 --- a/packages/storycrawler/package.json +++ b/packages/storycrawler/package.json @@ -3,7 +3,7 @@ "version": "4.3.1", "description": "Utilities to build Storybook crawling tools with Puppeteer", "engines": { - "node": ">=14.13" + "node": ">=18" }, "main": "lib/index.js", "typings": "lib/index.d.ts",