Skip to content

remove env[VAR] syntax, avoid to error 'Unrecognized named-value' #58

remove env[VAR] syntax, avoid to error 'Unrecognized named-value'

remove env[VAR] syntax, avoid to error 'Unrecognized named-value' #58

Workflow file for this run

name: cache
on: [push]
jobs:
install:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v1
- name: Install
run: |
npm install
cache:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v1
- name: Cache node_modules
uses: actions/cache@preview
with:
path: node_modules
key: ${{ runner.os }}-node-${{ hashFiles('**/package-lock.json') }}
- name: Install
run: |
npm install