update folder structure #2
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Node | |
description: Reusable action to get the correct node version installed in CI | |
runs: | |
using: composite | |
steps: | |
- uses: actions/setup-node@v4 | |
with: | |
node-version: 18.15 | |
- name: cache node_modules | |
uses: actions/cache@v4 | |
with: | |
key: npm-${{ runner.os }}-${{ hashFiles('package-lock.json') }} | |
path: | | |
node_modules | |
- name: install npm & node dependencies | |
shell: bash | |
run: npm i -g [email protected] && npm i | |