diff --git a/.github/workflows/push.yml b/.github/workflows/push.yml index 9810daf7cb..0b4e623b83 100644 --- a/.github/workflows/push.yml +++ b/.github/workflows/push.yml @@ -14,12 +14,17 @@ jobs: - name: Checkout code uses: actions/checkout@v3 + # Setup Node.js + - name: Setup Node.js + uses: actions/setup-node@v3 + with: + node-version: "18" + # Setup pnpm - name: Setup pnpm uses: pnpm/action-setup@v4 with: - version: 8 - cache: pnpm + version: 8.6.12 # Install dependencies and run tests - name: Run Tests and Upload Coverage to Codecov