Skip to content

chore: remove staticzap, remove tracker, & fix cache #35

chore: remove staticzap, remove tracker, & fix cache

chore: remove staticzap, remove tracker, & fix cache #35

Workflow file for this run

name: Test PkDx
on: [push]
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [14.x]
steps:
- uses: actions/[email protected]
- name: Get yarn cache directory path
id: yarn-cache-dir-path
run: echo "::set-output name=dir::$(yarn cache dir)"
- uses: actions/cache@v2
id: yarn-cache # use this to check for `cache-hit` (`steps.yarn-cache.outputs.cache-hit != 'true'`)
with:
path: ${{ steps.yarn-cache-dir-path.outputs.dir }}
key: ${{ runner.os }}-yarn-${{ hashFiles('**/yarn.lock') }}
restore-keys: |
${{ runner.os }}-yarn-
- name: Install 🔧
run: yarn install --prefer-offline --frozen-lockfile
- name: Test 🧪
run: yarn test --coverage