From da03700894d9ec85d7b957ef0d7de07660c660dc Mon Sep 17 00:00:00 2001 From: Daniel Toplak Date: Tue, 6 Apr 2021 19:07:50 +0200 Subject: [PATCH] fix: gh actions --- .github/workflows/worflow.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/worflow.yml b/.github/workflows/worflow.yml index 771b495..6ccea76 100644 --- a/.github/workflows/worflow.yml +++ b/.github/workflows/worflow.yml @@ -14,15 +14,15 @@ jobs: uses: actions/checkout@v2 - name: setup node - uses: actions/setup-node@v1 + uses: actions/setup-node@v2 with: - node-version: '14.x' + node-version: '15.x' - name: clean install dependencies - run: npm ci + run: yarn install - name: compile and create vsix - run: npm run package + run: yarn run package - name: get-npm-version id: package_version