diff --git a/.github/workflows/testing.yml b/.github/workflows/testing.yml index 3a1a262..78fdad1 100644 --- a/.github/workflows/testing.yml +++ b/.github/workflows/testing.yml @@ -23,6 +23,14 @@ jobs: with: node-version: 18 + - name: Cache NPM dependencies + uses: actions/cache@v3 + with: + path: ~/.npm + key: ${{ runner.OS }}-npm-cache-${{ hashFiles('**/package-lock.json') }} + restore-keys: | + ${{ runner.OS }}-npm-cache- + - name: Download dependencies run: npm i diff --git a/package.json b/package.json index b5ad202..6f8e2e8 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "aurora-launcher-app", - "version": "0.0.4-beta2", + "version": "0.0.4-beta3", "description": "Launcher for Minecraft", "main": "build/main/index.js", "private": true,