From 3b4390ada3cedb0fcc7b022e2c3031b2c4d29f1b Mon Sep 17 00:00:00 2001 From: Josh Gross Date: Wed, 30 Oct 2019 16:00:09 -0400 Subject: [PATCH] Use node 12.x --- .github/workflows/workflow.yml | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/.github/workflows/workflow.yml b/.github/workflows/workflow.yml index 1b0f2a8..03a4d09 100644 --- a/.github/workflows/workflow.yml +++ b/.github/workflows/workflow.yml @@ -15,8 +15,12 @@ jobs: steps: - uses: actions/checkout@v1 + + - uses: actions/setup-node@v1 + with: + node-version: '12.x' - - run: npm install + - run: npm ci - name: Prettier Format Check run: npm run format-check