Merge pull request #302 from pulsar-edit/verbose-package-tests

Fix Package Test Cache Issue
This commit is contained in:
confused_techie 2023-01-05 16:20:30 -08:00 committed by GitHub
commit 1ade1ba5b0
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -40,14 +40,14 @@ jobs:
uses: actions/cache@v3
with:
path: node_modules
key: linux-modules-${{ hashFiles('package.json') }}
key: linux-modules-$env:GITHUB_SHA
- name: Cache apm
- name: Cache apm
id: cache-apm
uses: actions/cache@v3
with:
path: apm
key: linux-apm-${{ hashFiles('apm/package.json') }}
key: linux-apm-$env:GITHUB_SHA
test:
name: Test Packages
@ -79,14 +79,14 @@ jobs:
uses: actions/cache@v3
with:
path: node_modules
key: linux-modules-${{ hashFiles('package.json') }}
key: linux-modules-$env:GITHUB_SHA
- name: Restore apm from Cache
id: restore-apm
uses: actions/cache@v3
with:
path: apm
key: linux-apm-${{ hashFiles('apm/package.json') }}
key: linux-apm-$env:GITHUB_SHA
- name: Run Package Tests for ${{ matrix.descr }}
uses: GabrielBB/xvfb-action@v1