Skip to content

Fix piechart z-index #54

Fix piechart z-index

Fix piechart z-index #54

Workflow file for this run

name: Update cache
on:
push:
branches:
- master
jobs:
update-cache:
name: Update Cache
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Reconfigure git to use HTTP authentication
run: >
git config --global url."https://github.com/".insteadOf
ssh://git@github.com/
- name: Cache node_modules
id: cache-node-modules
uses: actions/cache@v3
with:
path: ./node_modules
key: node-modules-${{ hashFiles('**/package-lock.json') }}
- name: Setup node
if: steps.cache-node-modules.outputs.cache-hit != 'true'
uses: actions/setup-node@v4
with:
node-version-file: '.nvmrc'
- name: Install dependencies
if: steps.cache-node-modules.outputs.cache-hit != 'true'
run: |
npm ci