Skip to content

Commit

Permalink
test ci
Browse files Browse the repository at this point in the history
  • Loading branch information
qetza committed Mar 8, 2024
1 parent 871bcb6 commit 549503c
Showing 1 changed file with 10 additions and 10 deletions.
20 changes: 10 additions & 10 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ jobs:
steps:
- uses: actions/checkout@v4

- name: Copy node 6.x to lib cache
- name: 'Hack: manual download of node6 (linux)'
if: runner.os == 'Linux'
run: |
mkdir -p $RUNNER_TEMP/node6/node-v6.17.1-linux-x64
Expand All @@ -63,7 +63,7 @@ jobs:
cp $RUNNER_TEMP/node6/node-v6.17.1-linux-x64/bin/node $HOME/azure-pipelines-task-lib/_download/node6/node-v6.17.1-linux-x64/bin
echo '' > $HOME/azure-pipelines-task-lib/_download/node6.completed
- name: Copy node 6.x to lib cache
- name: 'Hack: manual download of node6 (macos)'
if: runner.os == 'macOS'
run: |
mkdir -p $RUNNER_TEMP/node6/node-v6.17.1-darwin-x64
Expand All @@ -73,13 +73,13 @@ jobs:
cp $RUNNER_TEMP/node6/node-v6.17.1-darwin-x64/bin/node $HOME/azure-pipelines-task-lib/_download/node6/node-v6.17.1-darwin-x64/bin
echo '' > $HOME/azure-pipelines-task-lib/_download/node6.completed
- name: Copy node 6.x to lib cache
- name: 'Hack: manual download of node6 (windows)'
if: runner.os == 'Windows'
shell: pwsh
run: |
mkdir $env:RUNNER_TEMP/node6
mkdir $env:RUNNER_TEMP/node6 > $null
curl https://nodejs.org/dist/v6.17.1/win-x64/node.exe -o $env:RUNNER_TEMP/node6/node.exe
mkdir $env:USERPROFILE/azure-pipelines-task-lib/_download/node6
mkdir $env:USERPROFILE/azure-pipelines-task-lib/_download/node6 > $null
cp $env:RUNNER_TEMP/node6/node.exe $env:USERPROFILE/azure-pipelines-task-lib/_download/node6
echo '' > $env:USERPROFILE/azure-pipelines-task-lib/_download/node6.completed
Expand All @@ -92,12 +92,12 @@ jobs:
run: |
npm ci
npm --prefix tasks/ReplaceTokensV3 ci
# npm --prefix tasks/ReplaceTokensV4 ci
# npm --prefix tasks/ReplaceTokensV5 ci
# npm --prefix tasks/ReplaceTokensV6 ci
npm --prefix tasks/ReplaceTokensV4 ci
npm --prefix tasks/ReplaceTokensV5 ci
npm --prefix tasks/ReplaceTokensV6 ci
- name: Build
run: npm run build:v3
run: npm run build

- name: Test
run: npm run test:v3
run: npm run test

0 comments on commit 549503c

Please sign in to comment.