Skip to content

Commit

Permalink
remove node/16 from tests
Browse files Browse the repository at this point in the history
  • Loading branch information
utyfua committed Aug 19, 2024
1 parent ac9b019 commit 0e048c0
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
nodeVersion: [16, 18, 20, 22]
nodeVersion: [18, 20, 22]
puppeteerVersion: [13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, latest]
fail-fast: false
steps:
Expand Down
2 changes: 1 addition & 1 deletion rollup.config.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import commonjs from '@rollup/plugin-commonjs';
import typescript from '@rollup/plugin-typescript';
import { babel } from '@rollup/plugin-babel';

import pkg from './package.json' assert { type: 'json' };
import pkg from './package.json' with { type: 'json' };

const banner = `
/*!
Expand Down
3 changes: 2 additions & 1 deletion test/page.spec.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
const { default: puppeteer } = require('puppeteer');
const puppeteerModule = require('puppeteer');
const puppeteer = puppeteerModule.default || puppeteerModule.puppeteer || puppeteerModule;
const { CookieJar } = require('tough-cookie');
const { getStoreByPage } = require('../');

Expand Down

0 comments on commit 0e048c0

Please sign in to comment.