From af36b89bd8236ce6e9f71a4f1a50f2105e6f838c Mon Sep 17 00:00:00 2001 From: Michael Thiesen Date: Thu, 17 Oct 2024 18:15:17 -0700 Subject: [PATCH] Updated Node.js version and streamlined Docker image workflow --- .github/workflows/docker-image.yml | 16 +++++++--------- 1 file changed, 7 insertions(+), 9 deletions(-) diff --git a/.github/workflows/docker-image.yml b/.github/workflows/docker-image.yml index cca092a..90d924a 100644 --- a/.github/workflows/docker-image.yml +++ b/.github/workflows/docker-image.yml @@ -15,18 +15,16 @@ jobs: steps: - uses: actions/checkout@v4 + - uses: pnpm/action-setup@v4 + with: + run_install: false - uses: actions/setup-node@v4 with: - node-version: "14" + node-version: "20" cache: "pnpm" - - name: Install pnpm - run: npm install -g pnpm - - name: Install dependencies - run: pnpm install - - name: Run linters - run: npm run check - - name: Run typecheck - run: npm run typecheck + - run: pnpm install + - run: npm run check + - run: npm run typecheck push: needs: lint