From f8db3b9411f0fe654f038eb7536586bf856bc0ac Mon Sep 17 00:00:00 2001 From: Danny McCormick Date: Fri, 7 Jun 2019 16:30:03 -0400 Subject: [PATCH] Try ci again --- .github/main.workflow.yml | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/.github/main.workflow.yml b/.github/main.workflow.yml index 70302174..823d4be2 100644 --- a/.github/main.workflow.yml +++ b/.github/main.workflow.yml @@ -8,8 +8,13 @@ jobs: matrix: operating-system: [Linux, macOS, Windows] actions: - - name: npm install - run: npm install + - name: Set Node.js 10.x + uses: bryanmacfarlane/node-config@master + with: + version: 10.x + + - name: npm ci + run: npm ci - name: Lint run: npm run format-check