Skip to content

Commit

Permalink
Updated Node.js version and streamlined Docker image workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
micthiesen committed Oct 18, 2024
1 parent a6142f4 commit af36b89
Showing 1 changed file with 7 additions and 9 deletions.
16 changes: 7 additions & 9 deletions .github/workflows/docker-image.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit af36b89

Please sign in to comment.