mirror of
https://github.com/actions/setup-node.git
synced 2025-04-22 09:21:00 +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
|
node-version: 12.x
|
||||||
- run: npm install
|
- run: npm install
|
||||||
- run: npm run format-check
|
- run: npm run format-check
|
||||||
- run: npm test
|
|
||||||
- run: npm run pack
|
- run: npm run pack
|
||||||
|
- run: npm test
|
||||||
- name: Verify no unstaged changes
|
- name: Verify no unstaged changes
|
||||||
if: runner.os != 'windows'
|
if: runner.os != 'windows'
|
||||||
run: __tests__/verify-no-unstaged-changes.sh
|
run: __tests__/verify-no-unstaged-changes.sh
|
||||||
|
@ -32,7 +32,7 @@ jobs:
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v2
|
- uses: actions/checkout@v2
|
||||||
- name: Clear tool cache
|
- 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
|
- name: Setup node 10
|
||||||
uses: ./
|
uses: ./
|
||||||
with:
|
with:
|
||||||
|
@ -55,7 +55,7 @@ jobs:
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@users/ericsciple/m165proxy
|
- uses: actions/checkout@users/ericsciple/m165proxy
|
||||||
- name: Clear tool cache
|
- 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
|
- name: Setup node 10
|
||||||
uses: ./
|
uses: ./
|
||||||
with:
|
with:
|
||||||
|
@ -71,7 +71,7 @@ jobs:
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@users/ericsciple/m165proxy
|
- uses: actions/checkout@users/ericsciple/m165proxy
|
||||||
- name: Clear tool cache
|
- 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
|
- name: Setup node 10
|
||||||
uses: ./
|
uses: ./
|
||||||
with:
|
with:
|
||||||
|
|
Loading…
Add table
Reference in a new issue