Skip to content

Commit

Permalink
ci: test supported node versions (#6406)
Browse files Browse the repository at this point in the history
  • Loading branch information
domoritz committed May 2, 2020
1 parent ea51633 commit b3365fc
Show file tree
Hide file tree
Showing 3 changed files with 577 additions and 437 deletions.
7 changes: 6 additions & 1 deletion .github/workflows/test.yml
Expand Up @@ -10,7 +10,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
node: [10, 12, 13]
node: [10, 12, 14]

name: Node ${{ matrix.node }}

Expand All @@ -22,6 +22,11 @@ jobs:
with:
node-version: ${{ matrix.node }}

# remove once https://github.com/Automattic/node-canvas/pull/1568 is in
- name: Install extra dependencies for Node 14
run: sudo apt-get install libcairo2-dev libpango1.0-dev libgif-dev
if: matrix.node == 14

- name: Install Node dependencies
run: yarn --frozen-lockfile

Expand Down
24 changes: 12 additions & 12 deletions package.json
Expand Up @@ -70,8 +70,8 @@
},
"devDependencies": {
"@babel/cli": "^7.8.4",
"@babel/core": "^7.9.0",
"@babel/preset-env": "^7.9.5",
"@babel/core": "^7.9.6",
"@babel/preset-env": "^7.9.6",
"@rollup/plugin-commonjs": "11.1.0",
"@rollup/plugin-json": "^4.0.3",
"@rollup/plugin-node-resolve": "^7.1.3",
Expand All @@ -80,8 +80,8 @@
"@types/jest": "^25.2.1",
"@types/mkdirp": "^1.0.0",
"@types/puppeteer": "^2.0.1",
"@typescript-eslint/eslint-plugin": "^2.29.0",
"@typescript-eslint/parser": "^2.29.0",
"@typescript-eslint/eslint-plugin": "^2.30.0",
"@typescript-eslint/parser": "^2.30.0",
"ajv": "^6.12.2",
"chai": "^4.2.0",
"cheerio": "^1.0.0-rc.3",
Expand All @@ -93,24 +93,24 @@
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-prettier": "^3.1.3",
"gh-pages": "^2.2.0",
"highlight.js": "^10.0.0",
"http-server": "^0.12.1",
"jest": "^25.4.0",
"highlight.js": "^10.0.1",
"http-server": "^0.12.3",
"jest": "^25.5.3",
"jest-puppeteer": "^4.4.0",
"mkdirp": "^1.0.4",
"prettier": "^2.0.5",
"puppeteer": "^3.0.1",
"rollup": "^2.7.2",
"rollup-plugin-sourcemaps": "^0.5.0",
"puppeteer": "^3.0.2",
"rollup": "^2.7.6",
"rollup-plugin-sourcemaps": "^0.6.1",
"rollup-plugin-terser": "^5.3.0",
"svg2png-many": "^0.0.7",
"terser": "^4.6.12",
"terser": "^4.6.13",
"ts-jest": "^25.4.0",
"ts-json-schema-generator": "^0.67.1",
"typescript": "~3.8.3",
"vega-cli": "^5.10.1",
"vega-datasets": "^1.30.2",
"vega-embed": "^6.6.0",
"vega-embed": "^6.7.0",
"vega-tooltip": "^0.22.1",
"vega-typings": "0.15.4",
"yaml-front-matter": "^4.1.0"
Expand Down

0 comments on commit b3365fc

Please sign in to comment.