Update .github/workflows/build.yml

This commit is contained in:
2026-05-15 00:50:40 +05:30
parent 4df82d6fd0
commit 5acee252c6

View File

@@ -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
- name: Checkout Repo
uses: actions/checkout@v6