mirror of
https://github.com/actions/github-script.git
synced 2026-02-07 19:47:26 +00:00
Add npm ci to integration test
This commit is contained in:
parent
4a93ad9f9e
commit
fb7e8f7c67
1 changed files with 6 additions and 0 deletions
6
.github/workflows/integration.yml
vendored
6
.github/workflows/integration.yml
vendored
|
|
@ -39,6 +39,12 @@ jobs:
|
|||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- uses: actions/checkout@v2
|
||||
- uses: actions/cache@v1
|
||||
with:
|
||||
path: ~/.npm
|
||||
key: ${{runner.os}}-npm-${{hashFiles('**/package-lock.json')}}
|
||||
restore-keys: ${{runner.os}}-npm-
|
||||
- uses: npm ci
|
||||
- id: output-set
|
||||
uses: ./
|
||||
with:
|
||||
|
|
|
|||
Loading…
Reference in a new issue