diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 49961af..e031e00 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -3,7 +3,20 @@ jobs: build: runs-on: ubuntu-latest steps: - - run: | + - name: Cache APT packages + uses: actions/cache@v4 + with: + path: | + /var/cache/apt/archives + /var/lib/apt/lists + key: ${{ runner.os }}-apt-nodejs-npm-git + restore-keys: | + ${{ runner.os }}-apt- + + - name: Install Dependencies + run: | apt-get update apt-get install -y nodejs npm git - - uses: actions/checkout@v6 \ No newline at end of file + + - name: Checkout Repo + uses: actions/checkout@v6 \ No newline at end of file