1
0
Fork 0
mirror of https://github.com/actions/setup-node synced 2025-04-09 10:25:52 +00:00
This commit is contained in:
eric sciple 2020-01-25 01:19:33 -05:00
parent 66a21ce13f
commit 2ea4222c73

View file

@ -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: