mirror of
https://github.com/actions/setup-node
synced 2025-04-09 10:25:52 +00:00
.
This commit is contained in:
parent
66a21ce13f
commit
2ea4222c73
1 changed files with 4 additions and 4 deletions
8
.github/workflows/workflow.yml
vendored
8
.github/workflows/workflow.yml
vendored
|
@ -21,8 +21,8 @@ jobs:
|
|||
node-version: 12.x
|
||||
- run: npm install
|
||||
- run: npm run format-check
|
||||
- run: npm test
|
||||
- run: npm run pack
|
||||
- run: npm test
|
||||
- name: Verify no unstaged changes
|
||||
if: runner.os != 'windows'
|
||||
run: __tests__/verify-no-unstaged-changes.sh
|
||||
|
@ -32,7 +32,7 @@ jobs:
|
|||
steps:
|
||||
- uses: actions/checkout@v2
|
||||
- name: Clear tool cache
|
||||
run: rm -rf '${{ runner.tool_cache }}' && mkdir '${{ runner.tool_cache }}'
|
||||
run: rm -rf $RUNNER_TOOL_CACHE && mkdir $RUNNER_TOOL_CACHE
|
||||
- name: Setup node 10
|
||||
uses: ./
|
||||
with:
|
||||
|
@ -55,7 +55,7 @@ jobs:
|
|||
steps:
|
||||
- uses: actions/checkout@users/ericsciple/m165proxy
|
||||
- name: Clear tool cache
|
||||
run: rm -rf '${{ runner.tool_cache }}' && mkdir '${{ runner.tool_cache }}'
|
||||
run: rm -rf $RUNNER_TOOL_CACHE && mkdir $RUNNER_TOOL_CACHE
|
||||
- name: Setup node 10
|
||||
uses: ./
|
||||
with:
|
||||
|
@ -71,7 +71,7 @@ jobs:
|
|||
steps:
|
||||
- uses: actions/checkout@users/ericsciple/m165proxy
|
||||
- name: Clear tool cache
|
||||
run: rm -rf '${{ runner.tool_cache }}' && mkdir '${{ runner.tool_cache }}'
|
||||
run: rm -rf $RUNNER_TOOL_CACHE && mkdir $RUNNER_TOOL_CACHE
|
||||
- name: Setup node 10
|
||||
uses: ./
|
||||
with:
|
||||
|
|
Loading…
Add table
Reference in a new issue