From 2112ef7b02a31800e3050df8364c964461e5ac71 Mon Sep 17 00:00:00 2001 From: Richard <33816291+hirichardhai@users.noreply.github.com> Date: Mon, 10 Jul 2023 14:53:17 -0700 Subject: [PATCH] Update main.yml to use node-version v14 When trying to run `npm run build`, the .yml file tries to use node v10.x which is incompatible with some of dependencies like the newer version of tailwindcss --- .github/workflows/main.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index a64188a..6101594 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -11,6 +11,8 @@ jobs: steps: - uses: actions/checkout@v2 - uses: actions/setup-node@v1 + with: + node-version: '14.x' - name: Installing all dependencies... run: npm ci