Skip to content

Commit

Permalink
fix test in release
Browse files Browse the repository at this point in the history
  • Loading branch information
DanielHabenicht authored Oct 18, 2021
1 parent ca90712 commit 3ab0608
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,18 +9,22 @@ jobs:
steps:
- name: Checkout
uses: actions/checkout@v2
with:
submodules: 'recursive'
- name: Use Node.js 14.x
uses: actions/setup-node@v1
with:
node-version: '14.x'
- uses: actions/cache@v2
id: npm-cache
with:
path: '**/node_modules'
key: ${{ runner.os }}-modules-${{ hashFiles('**/package-lock.json') }}
path: 'node_modules'
key: ${{ runner.os }}-modules-${{ hashFiles('package-lock.json') }}
- name: Install dependencies
if: steps.npm-cache.outputs.cache-hit != 'true'
run: npm ci
- name: Install packages
run: sudo apt-get update && sudo apt-get install -y expect
- name: Test
run: npm run test-ci

Expand Down

0 comments on commit 3ab0608

Please sign in to comment.