1
0
mirror of https://github.com/sasjs/adapter.git synced 2025-12-10 17:04:36 +00:00

fix(workflow): added actions/setup-node@v2

This commit is contained in:
Yury Shkoda
2022-06-20 20:43:11 +03:00
parent 9b6a42e412
commit c3a0ad1f41

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