1
0
mirror of https://github.com/sasjs/adapter.git synced 2026-01-05 03:30:05 +00:00

Merge pull request #728 from sasjs/deps-fix

fix(workflow): added actions/setup-node@v2
This commit is contained in:
Yury Shkoda
2022-06-20 20:44:57 +03:00
committed by GitHub

View File

@@ -17,8 +17,12 @@ jobs:
node-version: [lts/fermium]
steps:
- name: Checkout
uses: actions/checkout@v2
- uses: actions/checkout@v2
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v2
with:
node-version: ${{ matrix.node-version }}
cache: npm
- name: Install Dependencies
run: npm ci