From 7128b95ea2246a23a937723eea9980c131ea950c Mon Sep 17 00:00:00 2001 From: stonedDiscord Date: Fri, 11 Mar 2022 19:09:53 +0100 Subject: update node to 14 --- .github/workflows/deploy.yml | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) (limited to '.github/workflows/deploy.yml') diff --git a/.github/workflows/deploy.yml b/.github/workflows/deploy.yml index 58d978f..b0d5ea4 100644 --- a/.github/workflows/deploy.yml +++ b/.github/workflows/deploy.yml @@ -9,7 +9,10 @@ jobs: - name: Checkout uses: actions/checkout@v1 - name: Setup Node - uses: actions/setup-node@v1 + uses: actions/setup-node@v2 + with: + node-version: '14' + cache: 'npm' - name: Install Dependencies run: npm install - name: Build Project -- cgit