diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 984e6ab..2072115 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -24,8 +24,13 @@ jobs: - name: Checkout uses: actions/checkout@v3 + - uses: actions/setup-node@v3 + with: + node-version: 18 + cache: 'npm' + - name: Install Dependencies - run: npm install + run: npm ci - name: Typecheck run: npm run typecheck