You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
21 lines
463 B
21 lines
463 B
3 years ago
|
name: Setup
|
||
|
|
||
|
runs:
|
||
|
using: composite
|
||
|
steps:
|
||
|
- uses: actions/setup-node@v3
|
||
|
with:
|
||
|
node-version: 14.x
|
||
|
cache: npm
|
||
|
- uses: actions/cache@v3
|
||
|
id: cache
|
||
|
with:
|
||
|
path: '**/node_modules'
|
||
|
key: npm-v3-${{ hashFiles('**/package-lock.json') }}
|
||
|
- name: Install dependencies
|
||
|
run: npm ci --prefer-offline
|
||
|
shell: bash
|
||
|
if: steps.cache.outputs.cache-hit != 'true'
|
||
|
env:
|
||
|
SKIP_COMPILE: true
|