diff --git a/.github/workflows/dev.yml b/.github/workflows/dev.yml index 82b92d278..392046d2c 100644 --- a/.github/workflows/dev.yml +++ b/.github/workflows/dev.yml @@ -7,8 +7,12 @@ jobs: runs-on: ubuntu-latest steps: - uses: actions/checkout@v4 - - name: Install dependencies - run: npm i + - name: Set up node & dependencies + uses: actions/setup-node@v4 + with: + node-version: 18 + cache: "npm" + - run: npm ci - name: Run the TypeScript build run: npx tsc - name: Create server-package.json