From 90ecbfc3b9719935a432d98ee9f93a9b8abe0242 Mon Sep 17 00:00:00 2001 From: Ryan Castner Date: Mon, 14 Oct 2019 19:53:40 -0400 Subject: [PATCH] fix: failing builds Using the --ignore-engines flag when installing with yarn https://yarnpkg.com/en/docs/cli/install#toc-yarn-install-ignore-engines This is necessitated by one of the deps we rely on, rollup-plugin-ts, having a node >= 9.0.0 engine requirement which is failing the nodejs 8 builds. https://github.com/wessberg/rollup-plugin-ts/blob/9079d7a4705078e0709a6f5b9b5147081cce7baf/package.json#L108-L110 --- .github/workflows/nodejs.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/nodejs.yml b/.github/workflows/nodejs.yml index 1fd4e44fe..3947f6250 100644 --- a/.github/workflows/nodejs.yml +++ b/.github/workflows/nodejs.yml @@ -24,7 +24,7 @@ jobs: run: npm install -g yarn - name: Install deps and build - run: yarn install --frozen-lockfile + run: yarn install --frozen-lockfile --ignore-engines - name: Test package run: yarn test