Skip to content

Commit

Permalink
[dsch] gh.action updated
Browse files Browse the repository at this point in the history
  • Loading branch information
DScheglov committed Mar 18, 2021
1 parent e734553 commit 5821462
Showing 1 changed file with 12 additions and 1 deletion.
13 changes: 12 additions & 1 deletion .github/workflows/run-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ jobs:
node-version: ${{ matrix.node }}

- name: Install dependencies
run: npm install # switch to `npm ci` when Node.js 6 support is dropped
run: npm install

- name: Lint
run: npm run lint
Expand Down Expand Up @@ -52,6 +52,17 @@ jobs:
runs-on: ubuntu-latest
if: startsWith(github.ref, 'refs/tags/v')
steps:
- name: Clone repo
uses: actions/checkout@v2

- name: Set Node.js version
uses: actions/setup-node@v1
with:
node-version: 14

- name: Install dependencies
run: npm install

- name: Check Version
run: ./version.sh

Expand Down

0 comments on commit 5821462

Please sign in to comment.