diff --git a/.github/workflows/deploy.yml b/.github/workflows/deploy.yml index a75efba..9aed822 100644 --- a/.github/workflows/deploy.yml +++ b/.github/workflows/deploy.yml @@ -6,7 +6,9 @@ on: jobs: build-and-deploy: + runs-on: ubuntu-latest + steps: - name: Checkout Repo uses: actions/checkout@v4 @@ -15,6 +17,7 @@ jobs: uses: actions/setup-node@v4 with: node-version: '20.x' + cache: 'npm' - name: Install Dependencies run: npm ci